mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:55:35 +08:00
update book code
This commit is contained in:
16
eBook/exercises/chapter_4/divby0.go
Normal file → Executable file
16
eBook/exercises/chapter_4/divby0.go
Normal file → Executable file
@@ -1,8 +1,8 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
a, b := 10, 0
|
||||
c := a / b // panic: runtime error: integer divide by zero
|
||||
|
||||
print(c)
|
||||
}
|
||||
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