It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it . The article may be deleted if this message remains in place for seven days, i.e., after 17:28, 12 April 2025 (UTC). Find sources: "JUDO" software – news · newspapers · books · scholar · JSTOR |
This article needs additional citations for verification .(January 2008) |
JUDO is a Java-based integrated development environment designed for children and beginning computer programmers. It is licensed under the GNU GPL.
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".