pushing through lazygit

This commit is contained in:
2026-09-08 01:38:39 -04:00
parent 8a6d0f9113
commit 24f546c2d5
3 changed files with 14 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
import (
"fmt"
"math"
)
func main() {
a := 81.0
fmt.Printf("the total a^2 will be: %f\n", math.Sqrt(a))
}