RosettaCodeData/Task/Comments/Bc/comments-2.bc
2017-09-25 22:28:19 +02:00

11 lines
313 B
Text

#!/usr/bin/bc
# This form of comment is an extension, not part of standard bc.
# Your program must not have a #! shebang line
# unless your bc supports this form of comment.
2 + 3 # It can be after a statement.
a = 1 # The newline is not part of the comment.
b = 2 # So this line is a different statement.