3 Star 0 Fork 0

Gitee 极速下载 / judo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/thomasdunn/judo
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

JUDO

Java IDE for Children and Beginning Programmers

JUDO website

Downloads, help, news, share programs:

http://judo.sourceforge.net/

Binary downloads:

Windows
MacOS X
Linux

Help

After running JUDO, go to the Help menu and select Tutorials. There are several topics to read through and learn to get you started writing your own programs.

General help with installing or running JUDO
Help writing programs

Languages

JUDO is available in English, French, Indonesian, Italian, Slovenian, and Spanish. If using the Windows installer, language can be selected during installation. For other operating systems: after unpacking, the language can be selected in judo.properties.

Releases

Overview

JUDO is a program written to help people learn to program, pure and simple. It is free software and you are encouraged to give it to others, look at its source code, or improve it.

JUDO was developed on the Windows platform, but some care was taken to make it cross-platform. However, I have not tested it, or even installed it all platforms.

I created JUDO while I was teaching a programming class to 12-14 year olds in Boston, MA. The program I did this with is called Citizen Schools (http://www.citizenschools.org/) and I recommend that you check it out. You may find similar opportunities in your community!

Your installation of JUDO may include a copy of the Java Development Kit from Sun Microsystems, Inc. It is governed by Sun Microsystems, Inc. Binary Code License Agreement.

What a JUDO program looks like:

void main()
{
	setBackgroundColor(black);

	printLine("What is your name?");
	String name = readString();

	printLine("Hi " + name + ". Type in a color.");
	Color c = readColor();

	setColor(c);
	fillCircle(100, 30, 100);

	printLine("Now go paint a face!");

	while(true) {
		if (getMouseEvent()) {
			setColor( randomColor() );

			if (getMouseButton(1)) {
				fillCircle(getMouseX()-5, getMouseY()-5, 10);
			}
		}
	}
}

JUDO program code and running program

JUDO function reference

Contributing to JUDO

Developers, if you want to help the children of the world learn to program, consider contributing to JUDO. Here are some areas that could use attention:

  • Update to latest Java version
  • Testing and bug fixes on Macos X and Linux
  • Installers or executable JARs for MacOS X and Linux
  • Double-buffering with methods such as enableBuffering() and drawBuffer()
  • Right-side, hideable JUDO Function reference UI, perhaps accordion style (in groups of functions: Graphics, I/O, Mouse, Keyboard, etc)
  • Help on documentation

The majority of JUDO development happened way back in 2001. I've come a long way since then :) JUDO could use some major refactoring or even a rewrite...

githalytics.com alpha

空文件

简介

暂无描述 展开 收起
Java 等 4 种语言
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/mirrors/judo.git
git@gitee.com:mirrors/judo.git
mirrors
judo
judo
master

搜索帮助