12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
#!/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.
|