mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:55:35 +08:00
fix: coding style and file format for all example.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
for i := 0; i < 10; i++ {
|
||||
if i == 5 {
|
||||
continue
|
||||
}
|
||||
print(i)
|
||||
print(" ")
|
||||
}
|
||||
}
|
||||
package main
|
||||
|
||||
func main() {
|
||||
for i := 0; i < 10; i++ {
|
||||
if i == 5 {
|
||||
continue
|
||||
}
|
||||
print(i)
|
||||
print(" ")
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user