diff --git a/helloworld.go b/helloworld.go new file mode 100644 index 0000000000000000000000000000000000000000..d422f35b31fa36cd416a5422acb838ded358b048 --- /dev/null +++ b/helloworld.go @@ -0,0 +1,11 @@ +package main + +import ( + "fmt" + "strings" + "os" +) + +func main() { + fmt.Println(strings.Join(os.Args[1:], " ")) +}