my shitty java code, from absolute basics to basics
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
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. }