├── .gitignore ├── LICENSE.md ├── LOGO ├── generis.png └── generis.svg ├── README.md ├── SAMPLE ├── GO │ └── sample.go ├── GS │ └── sample.gs ├── make.sh └── run.sh ├── TEST ├── GO │ └── test.go ├── GS │ └── test.gs └── run.sh ├── debug.sh ├── generis.d ├── make.sh └── release.sh /.gitignore: -------------------------------------------------------------------------------- 1 | generis 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LOGO/generis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/LOGO/generis.png -------------------------------------------------------------------------------- /LOGO/generis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/LOGO/generis.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE/GO/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/SAMPLE/GO/sample.go -------------------------------------------------------------------------------- /SAMPLE/GS/sample.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/SAMPLE/GS/sample.gs -------------------------------------------------------------------------------- /SAMPLE/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/SAMPLE/make.sh -------------------------------------------------------------------------------- /SAMPLE/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | cd GO 4 | go run sample.go 5 | 6 | -------------------------------------------------------------------------------- /TEST/GO/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/TEST/GO/test.go -------------------------------------------------------------------------------- /TEST/GS/test.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/TEST/GS/test.gs -------------------------------------------------------------------------------- /TEST/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/TEST/run.sh -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/debug.sh -------------------------------------------------------------------------------- /generis.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SenseLogic/GENERIS/HEAD/generis.d -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | dmd -m64 generis.d 4 | rm *.o 5 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | dmd -O -m64 generis.d 4 | rm *.o 5 | --------------------------------------------------------------------------------