Skip to content

Instantly share code, notes, and snippets.

@leveled
Created February 3, 2021 13:18
Show Gist options
  • Save leveled/f21c19b2c258643adf3ac6d9c51fa091 to your computer and use it in GitHub Desktop.
Save leveled/f21c19b2c258643adf3ac6d9c51fa091 to your computer and use it in GitHub Desktop.
Hello World in Nim
# 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