summary refs log tree commit diff stats
path: root/examples/cross_calculator/nim_backend/backend.nim
blob: c8684581ca7a6c1199794db74c1b7d65bce13b18 (plain) (blame)
1
2
3
4
5
# Backend for the different user interfaces.

proc myAdd*(x, y: int): int {.cdecl, exportc.} =
  result = x + y