Files
Nim/tests/openarray/topenarrayrepr.nim
flywind 1368316b7f style usages part one (openarray => openArray) (#19321)
* style usages (openArray)

* revert doc changes

(cherry picked from commit 9df195ef58)
2022-05-25 16:33:37 +02:00

14 lines
242 B
Nim

discard """
output: "5 - [1]"
"""
type
TProc = proc (n: int, m: openArray[int64]) {.nimcall.}
proc Foo(x: int, P: TProc) =
P(x, [ 1'i64 ])
proc Bar(n: int, m: openArray[int64]) =
echo($n & " - " & repr(m))
Foo(5, Bar) #OUT 5 - [1]