mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:08:53 +08:00
9 lines
116 B
Go
Executable File
9 lines
116 B
Go
Executable File
package main
|
|
|
|
func main() {
|
|
a, b := 10, 0
|
|
c := a / b // panic: runtime error: integer divide by zero
|
|
|
|
print(c)
|
|
}
|