my shitty java code, from absolute basics to basics
25개 이상의 토픽을 선택하실 수 없습니다. 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. }