├── .gitignore ├── Dockerfile ├── README.md ├── conf.json ├── docker_timeout.sh ├── nim.cfg ├── nim_playground.nimble ├── setup.sh ├── src └── nim_playground.nim └── test └── script.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nim-playground 2 | -------------------------------------------------------------------------------- /conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/conf.json -------------------------------------------------------------------------------- /docker_timeout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/docker_timeout.sh -------------------------------------------------------------------------------- /nim.cfg: -------------------------------------------------------------------------------- 1 | --threads:on -------------------------------------------------------------------------------- /nim_playground.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/nim_playground.nimble -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/setup.sh -------------------------------------------------------------------------------- /src/nim_playground.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/src/nim_playground.nim -------------------------------------------------------------------------------- /test/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharycarter/nim-playground/HEAD/test/script.sh --------------------------------------------------------------------------------