Skip to content

Instantly share code, notes, and snippets.

@fowlmouth
Created March 26, 2015 05:07
Show Gist options
  • Save fowlmouth/42c762d6ad81e7a4dfb9 to your computer and use it in GitHub Desktop.
Save fowlmouth/42c762d6ad81e7a4dfb9 to your computer and use it in GitHub Desktop.
type Unchecked* {.unchecked.}[T] = array[1,T]
var x = [1,2,3]
let y = cast[ptr Unchecked[int]](x[0].addr)
echo y[0]
echo y[1]
echo y[2]
echo y[3] # stack garbage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment