commit b8161cb6417eef90a82d62c389f7ced26d0f0097 Author: Maas Lalani Date: Sat Jun 10 00:15:49 2023 -0400 initial commit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..9cbc9363921d69c0c79c023776a6b7a01e1b60eb --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/maaslalani/invoice + +go 1.19 diff --git a/main.go b/main.go new file mode 100644 index 0000000000000000000000000000000000000000..99fd8050e485c174e01c4e074041e41ae09bae59 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello") +}