1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-23 20:02:22 +00:00
2019-07-26 07:25:57 +08:00

11 lines
139 B
Go

package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, playground", LoopAdd(100, 1, 1))
}
func LoopAdd(cnt, v0, step int) int