├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cli.go ├── test └── dining_philosophers.go ├── transpile.go └── transpile_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | test/tardis/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/README.md -------------------------------------------------------------------------------- /cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/cli.go -------------------------------------------------------------------------------- /test/dining_philosophers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/test/dining_philosophers.go -------------------------------------------------------------------------------- /transpile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/transpile.go -------------------------------------------------------------------------------- /transpile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theodus/go-transpiler/HEAD/transpile_test.go --------------------------------------------------------------------------------