mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
8 lines
111 B
Nim
8 lines
111 B
Nim
|
|
template `:=`(name, val: untyped): typed =
|
|
var name = val
|
|
|
|
ha := 1 * 4
|
|
hu := "ta-da" == "ta-da"
|
|
echo ha, hu
|