mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
14 lines
161 B
Nim
14 lines
161 B
Nim
discard """
|
|
output: '''
|
|
foo
|
|
bar
|
|
'''
|
|
"""
|
|
|
|
proc test(strings: seq[string]) =
|
|
for s in strings:
|
|
var p3 = unsafeAddr(s)
|
|
echo p3[]
|
|
|
|
test(@["foo", "bar"])
|