Comments
Comments are used to document the code, they are not executed and are ignored by the compiler.
// This is a comment
let a = 3;
/*
This is multiline comment
I can be an many lines long as you wish
*/
print(a); // 3
Comments are used to document the code, they are not executed and are ignored by the compiler.
// This is a comment
let a = 3;
/*
This is multiline comment
I can be an many lines long as you wish
*/
print(a); // 3