mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 11:12:37 +00:00
6 lines
104 B
Nim
Executable File
6 lines
104 B
Nim
Executable File
# Backend for the Lazarus GUI
|
|
|
|
proc myAdd*(x, y: int): int {.cdecl, exportc.} =
|
|
result = x + y
|
|
|