Created
February 3, 2021 13:19
-
-
Save leveled/12ae8e65d9a5db9059f807a738411302 to your computer and use it in GitHub Desktop.
Nim lexical elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
r"C:\program files\nim" | |
# A comment. | |
var myVariable: int ## a documentation comment | |
#[ | |
You can have any Nim code text commented | |
out inside this with no indentation restrictions. | |
yes("May I ask a pointless question?") | |
#[ | |
Note: these can be nested!! | |
]# | |
]# | |
1_000_000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment