fn: //
[contents]

Contents

Syntax

The syntax for // comments is:

f++:  
// comment

n++:  
@// comment

Description

The // function is for raw single-line comments, it skips straight to the end of the line.

f++ example

Example of // being used with f++:

// script.f
console("hello, world!")

n++ example

Example of // being used with n++:

@// script.n
@console("hello, world!")