Initial commit

This commit is contained in:
Sacha Ligthert 2023-11-02 14:20:33 +01:00
commit 40c16d3ea0
2 changed files with 16 additions and 0 deletions

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# Snake
A little fun game to write during long low-interaction meeting.
# Usage
Things
# Compiling
`go build .`

8
snake.go Normal file
View File

@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world!")
}