├── .clang-format ├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── jitcalc.dasc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/jitcalc/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.dasc linguist-language=c 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/jitcalc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/jitcalc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/jitcalc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/jitcalc/HEAD/README.md -------------------------------------------------------------------------------- /jitcalc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysprog21/jitcalc/HEAD/jitcalc.dasc --------------------------------------------------------------------------------