Skip to content

Instantly share code, notes, and snippets.

@Varriount
Created April 25, 2020 01:29
Show Gist options
  • Save Varriount/7d74f3479a4432b655ff1392d1df4bc5 to your computer and use it in GitHub Desktop.
Save Varriount/7d74f3479a4432b655ff1392d1df4bc5 to your computer and use it in GitHub Desktop.
proc this: void {.cdecl, exportc, dynlib.} =
var i = 1
var a = 2
var z = 3
proc foo(): int =
echo "here"
return i + a + z + 65
i = foo()
i = foo() + 66
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment