2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00

added nim support

This commit is contained in:
Igor Chubin 2019-07-06 19:59:57 +00:00
parent 156a175c62
commit 85e8e86feb
2 changed files with 5 additions and 0 deletions

1
sheets/_nim/_info.yaml Normal file
View File

@ -0,0 +1 @@
rosetta: "Nim"

4
sheets/_nim/hello Normal file
View File

@ -0,0 +1,4 @@
# To run the program:
# nim c -r --verbosity:0 helloworld.nim
# (presuming its code was saved in helloworld.nim)
echo "Hello World"