mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
9 lines
122 B
Nim
9 lines
122 B
Nim
|
|
template `:=`(name, val: expr): stmt {.immediate.} =
|
|
var name = val
|
|
|
|
ha := 1 * 4
|
|
hu := "ta-da" == "ta-da"
|
|
echo ha, hu
|
|
|