-
Notifications
You must be signed in to change notification settings - Fork 0
-
Suggestion
(-- block comment --)
Comment out a block of code:
(--
if answer = 42
print answer
--)
Re-enable a previously commented-out block:
--(--
if answer = 42
print answer
--)
Comment out part of a line of code:
print (foo, (-- bar --), baz)
Comment out a tuple's values (for some reason):
print(--foo, bar, baz--)
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment