Created
July 13, 2017 14:04
-
-
Save hectorgool/b6523c6c5372f444f1a40a4ab7bbd464 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
| /* | |
| Héctor G.O. | |
| twitter@hector_gool | |
| */ | |
| package main | |
| import "fmt" | |
| func main() { | |
| var nombre string | |
| fmt.Printf("%q \n", nombre) | |
| var edad int | |
| fmt.Printf("%d \n", edad) | |
| var version float32 | |
| fmt.Printf("%f \n", version) | |
| var aprobado bool | |
| fmt.Printf("%t \n", aprobado) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment