Adding control blocks examples.

master
Tomasz Półgrabia 2022-07-22 13:21:21 +02:00
parent 6795612268
commit 10bc00ef89
1 changed files with 21 additions and 0 deletions

21
control_blocks/main.go Normal file
View File

@ -0,0 +1,21 @@
package main
import (
"fmt"
"math"
)
func pow(x, n, lim float64) float64 {
if v := math.Pow(x, n); v < lim {
return v
} else {
return lim
}
}
func main() {
fmt.Println(
pow(3, 2, 10),
pow(3, 3, 20),
)
}