Updated main

This commit is contained in:
Sambo Chea 2020-06-09 09:40:12 +07:00
parent 23019913a5
commit dd9c4f260c

View File

@ -13,3 +13,9 @@ public class Print {
System.out.println(ID + " : " + message);
}
}
class Main {
public static void main(String[] args) {
Print.print("Hello");
}
}