Comment on Anon tries programming in Java

lurklurk@lemmy.world ⁨18⁩ ⁨hours⁩ ago

Hello World

30 minutes of boilerplate

writing imports

$ cat <<EOF > Hello.java
public class Hello {
  public static void main(String args[]) {
    System.out.println("Hello world!");
  }
}
EOF
$ java Hello.java
Hello world!

ok

source
Sort:hotnewtop