mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-23 20:02:22 +00:00
11 lines
139 B
Go
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 |