Skip to content

Instantly share code, notes, and snippets.

@KianYang-Lee
Created January 23, 2022 04:36
Show Gist options
  • Save KianYang-Lee/0db8090281733be5b2ccb2a16bd6b675 to your computer and use it in GitHub Desktop.
Save KianYang-Lee/0db8090281733be5b2ccb2a16bd6b675 to your computer and use it in GitHub Desktop.
"Hello World" in Java
class HelloWorld {
public static void main(String[] args) {
String my_output = "Hello world";
System.out.println(my_output);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment