Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 12, 2018 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ec4d2939bfffc50042a9298f8120dbc3 to your computer and use it in GitHub Desktop.
Save parzibyte/ec4d2939bfffc50042a9298f8120dbc3 to your computer and use it in GitHub Desktop.
package main
import (
"strconv"
"fmt"
)
func main(){
numero := 20
numeroCadena := strconv.Itoa(numero)
fmt.Println("Tengo " + numeroCadena + " dedos") // Imprime 'Tengo 20 dedos'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment