
nim
List of commands for nim:
-
nim:tldr:16183 nim: Generate HTML documentation for a module (output will be placed in the current directory).$ nim doc ${filename-nim}try on your machineexplain this command
-
nim:tldr:2c0f0 nim: Build a release binary optimized for low file size.$ nim compile -d:release --opt:size ${filename-nim}try on your machineexplain this command
-
nim:tldr:52e9b nim: Compile a source file.$ nim compile ${filename-nim}try on your machineexplain this command
-
nim:tldr:93dee nim: Check a file for syntax and semantics.$ nim check ${filename-nim}try on your machineexplain this command
-
nim:tldr:c7367 nim: Compile a source file with release optimizations enabled.$ nim compile -d:release ${filename-nim}try on your machineexplain this command
-
nim:tldr:e111c nim: Compile and run a source file.$ nim compile -r ${filename-nim}try on your machineexplain this command