Contact: aviboots(AT)netvision.net.il
39,988 questions
51,933 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 */