mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
14 lines
161 B
Nim
14 lines
161 B
Nim
discard """
|
|
output: '''
|
|
Using x: 2
|
|
Using y: 2
|
|
'''
|
|
"""
|
|
|
|
proc foo(x: int) =
|
|
echo "Using x: ", x
|
|
proc foo(y: int) =
|
|
echo "Using y: ", y
|
|
|
|
foo(x = 2)
|
|
foo(y = 2) |