youtu_grpc/main.go

15 lines
404 B
Go
Raw Permalink Normal View History

2025-02-05 18:45:49 +08:00
package main
import (
"fmt"
)
func main() {
for i := 1; i <= 5; i++ {
//TIP <p>To start your debugging session, right-click your code in the editor and select the Debug option.</p> <p>We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint
// for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>.</p>
fmt.Println("i =", 100/i)
}
}