Add a readme.

This commit is contained in:
2018-12-01 22:16:14 -05:00
parent 01f53ae30c
commit 949c258186

10
2018/readme.md Normal file
View File

@ -0,0 +1,10 @@
# 2018 Advent of Code solutions
This year, I'll be getting some [golang](https://golang.org/) practice.
Running these solutions requires **golang 1.11** or newer to build. If your
distribution doesn't offer a new enough version, running in docker is as easy as:
```
docker run --rm -it -v $(pwd):/go/src/ -w /go/src golang:1.11 go build dayXX-X.go
```