mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
11 lines
153 B
Nim
11 lines
153 B
Nim
discard """
|
|
output: "4"
|
|
"""
|
|
|
|
# test that an endless recursion is avoided:
|
|
|
|
template optLen{len(x)}(x: expr): expr = len(x)
|
|
|
|
var s = "lala"
|
|
echo len(s)
|