Mega Code Archive
Categories
/
Java Book
/
001 Language Basics
0066 Single-line comment
Java single line comment starts from // and ends till the end of that line. public class Main { // This is a single line comment. public static void main(String[] argv) { } }