mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
11 lines
120 B
Nim
11 lines
120 B
Nim
|
|
{.deadCodeElim: on.}
|
|
|
|
proc p1*(x, y: int): int =
|
|
result = x + y
|
|
|
|
proc p2*(x, y: string): string =
|
|
result = x & y
|
|
|
|
|