mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-21 20:33:58 +00:00
6 lines
119 B
Nim
6 lines
119 B
Nim
# Backend for the different user interfaces.
|
|
|
|
proc myAdd*(x, y: int): int {.cdecl, exportc.} =
|
|
result = x + y
|
|
|