Skip to content

# (pound)

Syntax

# This is a comment

Description

The pound (#) symbol represents a comment in FRED. The remainder of the line is ignored and is not included in the compiled program.

Examples

The following code includes two examples of a one-line comment.

# This is a comment
state Hungry {
    # This is also a comment
    wait(4)
    default(BuyFood)
}

See Also