February 2018
Intermediate to advanced
350 pages
7h 35m
English
Single-line comments use a double slash (//):
// This is a single line commentprintln("Hello, World!") // This is a single line comment too, after valid code
Block comments use a slash and asterisk to open the block (/*) and an asterisk and slash to close (*/):
/*This is a multi-line comment,Roses are red... and I forgot the rest*/println(/*block comments can be inside valid code*/ "Hello, World!")
Read now
Unlock full access