Skip to content

Instantly share code, notes, and snippets.

@bolilla
Created June 29, 2014 17:44
Show Gist options
  • Save bolilla/184d6a3231b24c646261 to your computer and use it in GitHub Desktop.
Save bolilla/184d6a3231b24c646261 to your computer and use it in GitHub Desktop.
GoPadawan OO Funcion Int Error
package main
import "fmt"
func (i int) printX() {
fmt.Println("Hola", i)
}
func main() {
i := 1
i.printX
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment