main: hello, world

This commit is contained in:
Cadey Ratio 2017-04-06 18:02:00 -07:00
commit c331115923
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.company;
public class Main {
public static void main(String[] args) {
System.out.println("hello, world");
}
}