Created
April 25, 2020 01:29
-
-
Save Varriount/7d74f3479a4432b655ff1392d1df4bc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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