mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-14 23:33:28 +00:00
corrected the index website
This commit is contained in:
7
tests/compile/tglobalforvar.nim
Normal file
7
tests/compile/tglobalforvar.nim
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
var funcs: seq[proc (): int] = @[]
|
||||
for i in 0..10:
|
||||
funcs.add((proc (): int = return i * i))
|
||||
|
||||
echo(funcs[3]())
|
||||
|
||||
@@ -45,8 +45,8 @@ Nimrod is efficient
|
||||
* Native code generation (currently via compilation to C), not dependant on a
|
||||
virtual machine: **Nimrod produces small executables without dependencies
|
||||
for easy redistribution.**
|
||||
* A fast non-recursive incremental and generational garbage collector that
|
||||
should be well suited for soft real-time systems (like games).
|
||||
* A fast **non-tracing** garbage collector that should be well suited for soft
|
||||
real-time systems (like games).
|
||||
* System programming features: Ability to manage your own memory and access the
|
||||
hardware directly. Pointers to garbage collected memory are distinguished
|
||||
from pointers to manually managed memory.
|
||||
|
||||
Reference in New Issue
Block a user