mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 14:23:45 +00:00
6 lines
136 B
Nim
6 lines
136 B
Nim
from mstatic import Foo
|
|
|
|
doAssert $Foo(x: 1, y: 2) == "static Foo(1, 2)"
|
|
let foo = Foo(x: 3, y: 4)
|
|
doAssert $foo == "runtime Foo(3, 4)"
|