├── .gitignore ├── .readthedocs.yaml ├── README.md ├── docs ├── 00-front-matter.md ├── 01-basic-introduction.md ├── 02-read-evaluate-print.md ├── 03-built-in-functions.md ├── 04-values-of-atoms.md ├── 05-simple-functions.md ├── 06-data-types.md ├── 07-structured-objects.md ├── 08-truth.md ├── 09-functions.md ├── 10-looping.md ├── 11-input-output.md ├── 12-locatives.md ├── 13-association-properties.md ├── 14-data-type-declarations.md ├── 15-lexical-blocking.md ├── 16-errors-frames-etc.md ├── 17-macro-operations.md ├── 18-machine-words-and-bits.md ├── 19-compiled-programs.md ├── 20-coroutines.md ├── 21-interrupts.md ├── 22-storage-management.md ├── 23-mdl-as-a-system-process.md ├── 24-efficiency-and-tastefulness.md ├── appendix-1-a-look-inside.md ├── appendix-2-predefined-subroutines.md ├── appendix-3-predefined-types.md ├── appendix-4-error-messages.md ├── appendix-5-initial-settings.md ├── appendix-6-references.md ├── appendix-7-topic-index.md ├── appendix-8-name-index.md ├── appendix-9-official-distribution-list.md └── index.md └── mkdocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /site 2 | *~ 3 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/00-front-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/00-front-matter.md -------------------------------------------------------------------------------- /docs/01-basic-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/01-basic-introduction.md -------------------------------------------------------------------------------- /docs/02-read-evaluate-print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/02-read-evaluate-print.md -------------------------------------------------------------------------------- /docs/03-built-in-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/03-built-in-functions.md -------------------------------------------------------------------------------- /docs/04-values-of-atoms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/04-values-of-atoms.md -------------------------------------------------------------------------------- /docs/05-simple-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/05-simple-functions.md -------------------------------------------------------------------------------- /docs/06-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/06-data-types.md -------------------------------------------------------------------------------- /docs/07-structured-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/07-structured-objects.md -------------------------------------------------------------------------------- /docs/08-truth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/08-truth.md -------------------------------------------------------------------------------- /docs/09-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/09-functions.md -------------------------------------------------------------------------------- /docs/10-looping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/10-looping.md -------------------------------------------------------------------------------- /docs/11-input-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/11-input-output.md -------------------------------------------------------------------------------- /docs/12-locatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/12-locatives.md -------------------------------------------------------------------------------- /docs/13-association-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/13-association-properties.md -------------------------------------------------------------------------------- /docs/14-data-type-declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/14-data-type-declarations.md -------------------------------------------------------------------------------- /docs/15-lexical-blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/15-lexical-blocking.md -------------------------------------------------------------------------------- /docs/16-errors-frames-etc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/16-errors-frames-etc.md -------------------------------------------------------------------------------- /docs/17-macro-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/17-macro-operations.md -------------------------------------------------------------------------------- /docs/18-machine-words-and-bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/18-machine-words-and-bits.md -------------------------------------------------------------------------------- /docs/19-compiled-programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/19-compiled-programs.md -------------------------------------------------------------------------------- /docs/20-coroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/20-coroutines.md -------------------------------------------------------------------------------- /docs/21-interrupts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/21-interrupts.md -------------------------------------------------------------------------------- /docs/22-storage-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/22-storage-management.md -------------------------------------------------------------------------------- /docs/23-mdl-as-a-system-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/23-mdl-as-a-system-process.md -------------------------------------------------------------------------------- /docs/24-efficiency-and-tastefulness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/24-efficiency-and-tastefulness.md -------------------------------------------------------------------------------- /docs/appendix-1-a-look-inside.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-1-a-look-inside.md -------------------------------------------------------------------------------- /docs/appendix-2-predefined-subroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-2-predefined-subroutines.md -------------------------------------------------------------------------------- /docs/appendix-3-predefined-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-3-predefined-types.md -------------------------------------------------------------------------------- /docs/appendix-4-error-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-4-error-messages.md -------------------------------------------------------------------------------- /docs/appendix-5-initial-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-5-initial-settings.md -------------------------------------------------------------------------------- /docs/appendix-6-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-6-references.md -------------------------------------------------------------------------------- /docs/appendix-7-topic-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-7-topic-index.md -------------------------------------------------------------------------------- /docs/appendix-8-name-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-8-name-index.md -------------------------------------------------------------------------------- /docs/appendix-9-official-distribution-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/appendix-9-official-distribution-list.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taradinoc/mdl-docs/HEAD/mkdocs.yml --------------------------------------------------------------------------------