Files
letsGO/testingLazyGIT/main.go
T
2026-09-08 01:38:39 -04:00

12 lines
125 B
Go

package main
import (
"fmt"
"math"
)
func main() {
a := 81.0
fmt.Printf("the total a^2 will be: %f\n", math.Sqrt(a))
}