trying_out_go/averageWithArgs/averageWithArgs.go

11 lines
81 B
Go

package main
import (
"fmt"
"os"
)
func average2() {
fmt.Println(os.Args)
}