2018-07-26 17:16:11 -05:00

11 lines
88 B
Go

package main
import (
"fmt"
"os"
)
func main() {
fmt.Printf("Args: %v", os.Args)
}