Files
qt-creator/share/qtcreator/templates/wizards/projects/nim/main.nim
Filippo Cucchetto 94fdd4d900 Added plugin for supporting the Nim programming language
The plugin support:
- basic syntax highlighting
- indentation
- project management
- run and build configuration
- debugging
- code style

Change-Id: Idfbb02a11ed570c90149a54b726beb956712e2bd
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Reviewed-by: hjk <hjk@theqtcompany.com>
2016-06-07 07:17:55 +00:00

6 lines
68 B
Nim

proc mainProc =
echo "Hello World"
if isMainModule:
mainProc()