Skip to content

Instantly share code, notes, and snippets.

@dom96
Created December 22, 2011 15:37
Show Gist options
  • Save dom96/1510712 to your computer and use it in GitHub Desktop.
Save dom96/1510712 to your computer and use it in GitHub Desktop.
type
MyType = object
field: string,
exportedField*: int64
proc foo(arg: var MyType) =
arg.field = "bar"
when isMainModule():
echo("Hello")
var s: MyType
foo(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment