Skip to content

Instantly share code, notes, and snippets.

@triplefox
Created February 13, 2015 02:37
Show Gist options
  • Save triplefox/a400a11fe05566bdc0fb to your computer and use it in GitHub Desktop.
Save triplefox/a400a11fe05566bdc0fb to your computer and use it in GitHub Desktop.
type Thing = ref object
x* : float
var t0 : Thing; new(t0);
var r0 : ref float = cast[ref float](addr(t0.x))
t0.x = 10.0
doAssert(r0[] == 10.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment