Contact: aviboots(AT)netvision.net.il
39,959 questions
51,901 answers
573 users
package main import ( "fmt" "math" ) func powInt(x, y int) int { return int(math.Pow(float64(x), float64(y))) } func main() { fmt.Println(powInt(3, 4)) } /* run: 81 */