Created
November 4, 2009 13:27
-
-
Save roccogalluzzo/226039 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i := 42 // i is an int | |
ptr : Int* | |
ptr = i& // ptr is now a pointer to i | |
ptr@ = 24 // the value of ptr is set to 24 | |
printf("i is now %d\n", i) // hint: i = 24 now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment