4.5.2.5.md

This commit is contained in:
Unknown
2013-06-09 20:18:11 +08:00
parent 146c81bd01
commit 4de688c86a
7 changed files with 114 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
package main
func main() {
a, b := 10, 0
c := a / b // panic: runtime error: integer divide by zero
print(c)
}