├── .gitignore ├── README ├── go.sh └── test ├── build.sh └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/openhexagon/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/openhexagon/HEAD/README -------------------------------------------------------------------------------- /go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/openhexagon/HEAD/go.sh -------------------------------------------------------------------------------- /test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/openhexagon/HEAD/test/build.sh -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- 1 | int test() { 2 | return 1337; 3 | } 4 | 5 | --------------------------------------------------------------------------------