Alexander Avery
9 months ago
2 changed files with 16 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||||
|
all: main.go main.ha |
||||
|
go build -o tick-go main.go |
||||
|
hare build -o tick-ha main.ha |
||||
|
|
||||
|
clean: tick-go tick-ha |
||||
|
rm ./tick-go ./tick-ha |
@ -0,0 +1,10 @@ |
|||||
|
# Tick Servers in Go and Hare |
||||
|
|
||||
|
This repository corresponds to [this blog post](https://beetbox.io/posts/do-not-fear-systems-programming/). |
||||
|
|
||||
|
## Building |
||||
|
|
||||
|
You can compile both the Go and Hare server by invoking `make`. |
||||
|
This will produce the files `tick-go` and `tick-ha`. |
||||
|
With either server running, you can connect locally with `telnet 127.0.0.1 8080`. |
||||
|
|
Loading…
Reference in new issue