Guest User

Untitled

a guest
Mar 20th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "strconv"
  5. "fmt"
  6. )
  7.  
  8. func main(){
  9. numeroCadena := "10"
  10. numeroEntero, error := strconv.Atoi(numeroCadena)
  11. if error != nil {
  12. fmt.Println("Error al convertir: ", error)
  13. }
  14. fmt.Println(numeroEntero + 5) // Imprime 15
  15. }
Add Comment
Please, Sign In to add comment