my shitty java code, from absolute basics to basics
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
219B

  1. /** hello world
  2. * by vala, because everyone should start somewhere
  3. * copy as you like, it wont be any good
  4. */
  5. public class HelloWorld{
  6. public static void main(String[] args){
  7. System.out.print("hello world!");
  8. }
  9. }