|
1 Running Nectar software
1.1 Java Runtime Environment & Development Kit
1.2 Hello World
$ cat > hello.java
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}
^D
$ javac hello.java
$ java HelloWorldApp
1.3 Nectar application
2 Integrated development environment
|