Files
Nim/tests/rodfiles/deadg.nim
Adam Strzelecki e80465dacf tests: Trim .nim files trailing whitespace
via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
2015-09-04 23:04:32 +02:00

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