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
-2
View File
@@ -6,7 +6,6 @@ import (
) )
func main() { func main() {
var sum float64 var sum float64
var n int var n int
@@ -27,5 +26,4 @@ func main() {
} }
average := sum / float64(n) average := sum / float64(n)
fmt.Println("The average of the total numbers is:", average) fmt.Println("The average of the total numbers is:", average)
} }
+3
View File
@@ -0,0 +1,3 @@
module main
go 1.27.0
+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))
}