Skip to content

Instantly share code, notes, and snippets.

@bolilla
Created June 29, 2014 17:43
Show Gist options
  • Save bolilla/d85eb68b259001504845 to your computer and use it in GitHub Desktop.
Save bolilla/d85eb68b259001504845 to your computer and use it in GitHub Desktop.
GoPadawan OO Funcion
package main
import "fmt"
type nuevoEntero int
func (x nuevoEntero) elDoble() nuevoEntero {
return x * 2
}
func main() {
var varEntera nuevoEntero = 42
fmt.Println("La respuesta es", varEntera)
fmt.Println("y el doble es", varEntera.elDoble())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment