Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 452 Bytes

comment.md

File metadata and controls

19 lines (15 loc) · 452 Bytes
version example_title
1.0.0
Comments

Comments

V supports single line comments // and multi-line comments /* */. They should be used for documenting the code for letting the other users know how the code works. It can also be used for temporarily commenting the code which has to be used later on.

// This is a single line comment

/* This is a
*  multi-line comment
* /* This could be nested as well*/
*/