package main

import (
    "fmt"
    "math"
)

func main() {
    sqrtResult := math.Sqrt(16)
    powResult := math.Pow(2, 3)
    
    fmt.Println("sqrt:", sqrtResult) 
    fmt.Println("pow:", powResult)    

}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: