Added comment example

This commit is contained in:
Wizzard Dev 2016-11-22 19:55:25 +01:00 committed by GitHub
parent 8c937598e5
commit b566c7c2f7

View File

@ -0,0 +1,9 @@
public class Comment{
public static void main(String[] args){
System.out.println("Hello World"); // Single-line comment
/*
Multi-line
comment
*/
}
}