Skip to content

Instantly share code, notes, and snippets.

@bolilla
Last active August 29, 2015 14:19
Show Gist options
  • Save bolilla/7101a45f85dad7dd7177 to your computer and use it in GitHub Desktop.
Save bolilla/7101a45f85dad7dd7177 to your computer and use it in GitHub Desktop.
GoPadawan Err MethodInt
package main
import "fmt"
func (i int) doblar() int {
return i * 2
}
func main() {
a := 2
fmt.Println("Vamos a probar:", a.doblar())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment