Advertisement
cwchen

[Go] Overflow demo.

Sep 7th, 2017
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.17 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5.     "math"
  6. )
  7.  
  8. func main() {
  9.     // num is the maximal int32 value.
  10.     num := math.MaxInt32
  11.  
  12.     // Get -2147483648.
  13.     fmt.Println(num + 1)
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement