Skip to content

Instantly share code, notes, and snippets.

@pqflx3
Created March 30, 2018 19:09
Show Gist options
  • Save pqflx3/2edecf022e17842e23015c67b08e132d to your computer and use it in GitHub Desktop.
Save pqflx3/2edecf022e17842e23015c67b08e132d to your computer and use it in GitHub Desktop.
proc foo() : string =
var a = "hello "
proc bar(s : string){.inline.} =
a.add s
bar("world")
result = a
when isMainModule:
echo foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment