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++:

  1. # script.f
  2. console("hello, world!")

n++ example

Example of # being used with n++:

  1. @# script.n
  2. @console("hello, world!")