]> git.feebdaed.xyz Git - lgtm-rsvp.git/commitdiff
init with main.go
authorseantywork <seantywork@gmail.com>
Tue, 24 Dec 2024 08:01:59 +0000 (17:01 +0900)
committerseantywork <seantywork@gmail.com>
Tue, 24 Dec 2024 08:01:59 +0000 (17:01 +0900)
Makefile [new file with mode: 0644]
go.mod [new file with mode: 0644]
main.go [new file with mode: 0644]
rsvp.out [new file with mode: 0755]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..d9d227f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+all:
+       go build -o rsvp.out . 
+
+clean:
+       rm -rf *.out 
diff --git a/go.mod b/go.mod
new file mode 100644 (file)
index 0000000..14f2a00
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module our-wedding-rsvp
+
+go 1.23.2
diff --git a/main.go b/main.go
new file mode 100644 (file)
index 0000000..e480bfe
--- /dev/null
+++ b/main.go
@@ -0,0 +1,11 @@
+package main 
+
+import (
+
+       "fmt"
+)
+
+func main(){
+
+       fmt.Println("rsvp")
+}
diff --git a/rsvp.out b/rsvp.out
new file mode 100755 (executable)
index 0000000..516c9e5
Binary files /dev/null and b/rsvp.out differ