Skip to content

Instantly share code, notes, and snippets.

@rinfz
Created November 28, 2018 19:47
Show Gist options
  • Save rinfz/b93f197b5b9433c4d469e5c6ee50a036 to your computer and use it in GitHub Desktop.
Save rinfz/b93f197b5b9433c4d469e5c6ee50a036 to your computer and use it in GitHub Desktop.
ada style ptr deref in nim with no overhead
template all[T](arg: ptr T): T = arg[]
var x = 10
echo x.addr.all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment