mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
14 lines
213 B
V
14 lines
213 B
V
fn main() {
|
|
_ = 1 == 2
|
|
}
|
|
|
|
fn block_comments() {
|
|
/* tab to indent the comment
|
|
spaces before
|
|
also spaces before
|
|
same here */
|
|
/* spaces for comment indentation (ouch)
|
|
and inside too
|
|
*/
|
|
}
|