From 06f72fbe894e984ec2f250a698e1349402a5beeb Mon Sep 17 00:00:00 2001 From: Shuhei Takahashi Date: Tue, 30 Jun 2020 22:44:56 +0900 Subject: [PATCH] Initial files for the starter kit --- app/go.mod | 3 +++ app/main.go | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 app/go.mod create mode 100644 app/main.go diff --git a/app/go.mod b/app/go.mod new file mode 100644 index 0000000..8621348 --- /dev/null +++ b/app/go.mod @@ -0,0 +1,3 @@ +module app + +go 1.14 diff --git a/app/main.go b/app/main.go new file mode 100644 index 0000000..725517e --- /dev/null +++ b/app/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "fmt" + "os" +) + +func main() { + fmt.Printf("%s %s\n", os.Args[1], os.Args[2]) +}