├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── README.md └── unit │ └── README.md ├── docs ├── _config.yml └── index.md ├── setup.cfg.cmd ├── setup.cfg.sh └── src ├── instant_fpc.pas ├── lib_consts.pas ├── lib_utils.pas └── mod_pascal.pas /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [zamronypj] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/bin/unit/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/docs/index.md -------------------------------------------------------------------------------- /setup.cfg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/setup.cfg.cmd -------------------------------------------------------------------------------- /setup.cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/setup.cfg.sh -------------------------------------------------------------------------------- /src/instant_fpc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/src/instant_fpc.pas -------------------------------------------------------------------------------- /src/lib_consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/src/lib_consts.pas -------------------------------------------------------------------------------- /src/lib_utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/src/lib_utils.pas -------------------------------------------------------------------------------- /src/mod_pascal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamronypj/mod_pascal/HEAD/src/mod_pascal.pas --------------------------------------------------------------------------------