reformatted playground and added averageWithArgs

This commit is contained in:
2023-10-25 11:55:04 -04:00
parent 991b3a450a
commit 42b66cc8af
19 changed files with 686 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package main
import (
"fmt"
"os"
)
func average2() {
fmt.Println(os.Args)
}

3
averageWithArgs/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module averageWithArgs
go 1.21.3