├── Dockerfile ├── Makefile ├── example ├── Dockerfile ├── Makefile ├── answer.json ├── example ├── example.go └── readme.md ├── license └── readme.md /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/Makefile -------------------------------------------------------------------------------- /example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/example/Dockerfile -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/answer.json: -------------------------------------------------------------------------------- 1 | {"everything":42} 2 | -------------------------------------------------------------------------------- /example/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/example/example -------------------------------------------------------------------------------- /example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/example/example.go -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/example/readme.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daaku/goruntime/HEAD/readme.md --------------------------------------------------------------------------------