Created
February 28, 2018 16:47
-
-
Save dav1x/52c8eddc7d3f22a4939576d9b50a842e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Here's a tricky one! What will the following program print out? | |
package main | |
import "fmt" | |
func main() { | |
name := "Bill" | |
fmt.Println(*&name) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment