mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 12:37:46 +00:00
16 lines
231 B
Nim
16 lines
231 B
Nim
|
|
import std/macros
|
|
import std/macrocache
|
|
|
|
const myCounter = CacheCounter"myCounter"
|
|
|
|
proc getUniqueId*(): int {.compileTime.} =
|
|
inc myCounter
|
|
result = myCounter.value
|
|
|
|
static:
|
|
myCounter.inc(3)
|
|
assert myCounter.value == 3
|
|
|
|
|