mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
10 lines
173 B
Nim
10 lines
173 B
Nim
discard """
|
|
output: "110"
|
|
"""
|
|
|
|
template arithOps: expr = (`+` | `-` | `*`)
|
|
template testOr{ (arithOps{f})(a, b) }(a, b, f: expr): expr = f(a+1, b)
|
|
|
|
let xx = 10
|
|
echo 10*xx
|