Files
Nim/tests/openarray/topenlen.nim
flywind 9df195ef58 style usages part one (openarray => openArray) (#19321)
* style usages (openArray)

* revert doc changes
2022-01-04 13:29:50 +01:00

16 lines
344 B
Nim

discard """
output: "7"
"""
# Tests a special bug
proc choose(b: openArray[string]): string = return b[0]
proc p(a, b: openArray[string]): int =
result = a.len + b.len - 1
for j in 0 .. a.len: inc(result)
discard choose(a)
discard choose(b)
discard choose(["sh", "-c", $p([""], ["a"])])
echo($p(["", "ha", "abc"], ["xyz"])) #OUT 7