mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:33:04 +08:00
4.5.2.5.md
This commit is contained in:
8
eBook/exercises/chapter_4/divby0.go
Normal file
8
eBook/exercises/chapter_4/divby0.go
Normal 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)
|
||||
}
|
Reference in New Issue
Block a user