nim

Installation
SKILL.md

Nim

Nim v2.0 (2023/2024) made ORC (Deterministic Memory Management) the default. It compiles to C/C++/JS and offers Python-like syntax with C-like speeds.

When to Use

  • Game Development: Hot reloading and performance.
  • Embedded: Compiles to small C code requiring no runtime.
  • Scripting: Compiles so fast it feels like a script (nim r).

Core Concepts

Metaprogramming

First-class support. You can rewrite the AST to create DSLs.

ORC

Cycle-collecting ARC. Automatic memory management without pauses.

Related skills
Installs
1
GitHub Stars
7
First Seen
Feb 10, 2026