Created
February 3, 2021 13:18
-
-
Save leveled/f21c19b2c258643adf3ac6d9c51fa091 to your computer and use it in GitHub Desktop.
Hello World in Nim
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
| # This is a comment | |
| echo "What's your name? " | |
| var name: string = readLine(stdin) | |
| echo "Hi, ", name, "!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment