|
|
This article does not cite any references or sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (January 2008) |
JUDO is a Java-based integrated development environment designed for children and beginning computer programmers.
Syntax
JUDO syntax is much like Java.
void main() {
// one line comment
printLine("Hello World!");
}
This will print out the text "Hello World". Variables can by constructed by declaring them outside the main() method.
String question = "Do I like Ice Creame? "; boolean likeIceCreame = true; int number = 10; double puny = number - 9.004; // the follow is an integer array int[] array = new int [100];
// class
class coordinate {
public int x; public int y = -1000;
}
void main() {
printLine("" + question + likeIceCreame);
}
External links
- JUDO's Website
- An article on JUDO written by the author.
- JUDO at Freshmeat
- A detailed tutorial on how to use JUDO.
| This computer language-related article is a stub. You can help Wikipedia by expanding it. |
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)





