diff --git a/testingLazyGIT/go.mod b/testingLazyGIT/go.mod deleted file mode 100644 index e092793..0000000 --- a/testingLazyGIT/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module main - -go 1.27.0 diff --git a/testingLazyGIT/main.go b/testingLazyGIT/main.go deleted file mode 100644 index 5f40cda..0000000 --- a/testingLazyGIT/main.go +++ /dev/null @@ -1,11 +0,0 @@ -package main - -import ( - "fmt" - "math" -) - -func main() { - a := 81.0 - fmt.Printf("the total a^2 will be: %f\n", math.Sqrt(a)) -}