# Comments
In accordance with ABS' minimalist style, there is only
one way to create comments in order to document your code,
by using the #
character:
# This text represents a comment
x = 1
In ABS, when you start a comment it will run until the end of the line, meaning there's no way to close comment blocks:
# This will not work # x = 1
x
ERROR: identifier not found: x
Though you can comment after a statement:
x = 1 # Now, this is a cool assignment!