fix: coding style and file format.

This commit is contained in:
Bo-Yi Wu
2017-02-10 16:33:02 +08:00
parent 0c9c21e518
commit b27e4d2435
5 changed files with 88 additions and 84 deletions

View 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)
}