diff options
author | Anthony Wang | 2023-04-24 15:39:34 -0400 |
---|---|---|
committer | Anthony Wang | 2023-04-24 15:39:34 -0400 |
commit | f2414e8a6b6276825efcc2b7132683ce15289537 (patch) | |
tree | b4544f868a51f9bc9aa89bd464694625e4f5805d /client | |
parent | 5cb3dff9d3f1a748272ffb490a1c3212ef2a019f (diff) |
Start working on Go implementation
Diffstat (limited to 'client')
-rw-r--r-- | client/client.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/client/client.go b/client/client.go new file mode 100644 index 0000000..b82c755 --- /dev/null +++ b/client/client.go @@ -0,0 +1,7 @@ +package client + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +} |