Jump to content

JUDO (software)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 156.57.214.222 (talk) at 22:24, 9 August 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The JUDO IDE
A screenshot of the Integrated Development Environment enhanced by Java

JUDO is a Java-based integrated development environment designed for children and beginning computer programmers. It is licensed under the GNU GPL.

Syntax

When you compile a program in JUDO, it works by inserting the user's code into a .java file with code that controls the window, listens for keystrokes, and handles MouseEvents. This means that JUDO code is actually Java code, just with an easier to use subset of functions that access the Java API.

  void main() {
     
     printLine("Hello World!");
  
  }

This program will print out "Hello World".

  • JUDO's Website
  • "JUDO". Freecode.
  • Dunn, Thomas (23 October 2001). "What is JUDO?". Schoolforge News Journal. Archived from the original on 7 November 2007. Retrieved 2 February 2012.
  • A detailed tutorial on how to use JUDO.