├── .io.livecode.ch ├── _site │ └── index.html ├── defaults.json ├── install └── run ├── README.md ├── blond.scm ├── boot.scm ├── bye.bl ├── cont.bl ├── cwcc.bl ├── cwce.bl ├── docs └── danvy-malmkjaer-blond-primer.pdf ├── exit.bl ├── format.scm ├── jump0.bl ├── jump0_each.bl ├── jump0_each_meta.bl ├── mit.scm ├── nexit.bl ├── no_recursive_instr.bl ├── openloop.bl ├── permute.bl ├── scheme.bl ├── sessions.scm ├── swap.bl └── test.sh /.io.livecode.ch/_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/.io.livecode.ch/_site/index.html -------------------------------------------------------------------------------- /.io.livecode.ch/defaults.json: -------------------------------------------------------------------------------- 1 | { 2 | "language" : "scheme" 3 | } 4 | -------------------------------------------------------------------------------- /.io.livecode.ch/install: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | echo OK -------------------------------------------------------------------------------- /.io.livecode.ch/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/.io.livecode.ch/run -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/README.md -------------------------------------------------------------------------------- /blond.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/blond.scm -------------------------------------------------------------------------------- /boot.scm: -------------------------------------------------------------------------------- 1 | (blond) 2 | -------------------------------------------------------------------------------- /bye.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/bye.bl -------------------------------------------------------------------------------- /cont.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/cont.bl -------------------------------------------------------------------------------- /cwcc.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/cwcc.bl -------------------------------------------------------------------------------- /cwce.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/cwce.bl -------------------------------------------------------------------------------- /docs/danvy-malmkjaer-blond-primer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/docs/danvy-malmkjaer-blond-primer.pdf -------------------------------------------------------------------------------- /exit.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/exit.bl -------------------------------------------------------------------------------- /format.scm: -------------------------------------------------------------------------------- 1 | (load-option 'format) 2 | -------------------------------------------------------------------------------- /jump0.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/jump0.bl -------------------------------------------------------------------------------- /jump0_each.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/jump0_each.bl -------------------------------------------------------------------------------- /jump0_each_meta.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/jump0_each_meta.bl -------------------------------------------------------------------------------- /mit.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/mit.scm -------------------------------------------------------------------------------- /nexit.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/nexit.bl -------------------------------------------------------------------------------- /no_recursive_instr.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/no_recursive_instr.bl -------------------------------------------------------------------------------- /openloop.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/openloop.bl -------------------------------------------------------------------------------- /permute.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/permute.bl -------------------------------------------------------------------------------- /scheme.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/scheme.bl -------------------------------------------------------------------------------- /sessions.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/sessions.scm -------------------------------------------------------------------------------- /swap.bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/swap.bl -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namin/blond/HEAD/test.sh --------------------------------------------------------------------------------