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