summary refs log tree commit diff stats
path: root/examples/cross_calculator/nim_backend
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cross_calculator/nim_backend')
-rw-r--r--examples/cross_calculator/nim_backend/backend.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/cross_calculator/nim_backend/backend.nim b/examples/cross_calculator/nim_backend/backend.nim
deleted file mode 100644
index c8684581c..000000000
--- a/examples/cross_calculator/nim_backend/backend.nim
+++ /dev/null
@@ -1,5 +0,0 @@
-# Backend for the different user interfaces.
-
-proc myAdd*(x, y: int): int {.cdecl, exportc.} =
-  result = x + y
-