mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-27 17:11:40 +00:00
8 lines
97 B
Nim
8 lines
97 B
Nim
proc p1*(x, y: int): int =
|
|
result = x + y
|
|
|
|
proc p2*(x, y: string): string =
|
|
result = x & y
|
|
|
|
|