Advertisement
cwchen

[Go] Division by zero

Oct 28th, 2017
647
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.07 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5. )
  6.  
  7. func main() {
  8.     fmt.Println(3 / 0)
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement