Advertisement
cwchen

[Go] Ignoring the error.

Oct 28th, 2017
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.11 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5.     "strconv"
  6. )
  7.  
  8. func main() {
  9.     n, _ := strconv.Atoi("123")
  10.  
  11.     fmt.Println(n)
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement