├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── TODO.txt ├── barrel.sh ├── barrel ├── barrel.rkt ├── core.rkt ├── expander.rkt ├── info.rkt ├── main.rkt ├── parser-test.rkt ├── parser.rkt ├── reader.rkt ├── scribblings │ └── barrel.scrbl ├── tokenizer.rkt └── util.rkt ├── examples ├── fibonacci.brl ├── helloworld.brl ├── map.brl └── quine.brl └── tests ├── if.brl └── random.brl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/TODO.txt -------------------------------------------------------------------------------- /barrel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel.sh -------------------------------------------------------------------------------- /barrel/barrel.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/barrel.rkt -------------------------------------------------------------------------------- /barrel/core.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/core.rkt -------------------------------------------------------------------------------- /barrel/expander.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/expander.rkt -------------------------------------------------------------------------------- /barrel/info.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/info.rkt -------------------------------------------------------------------------------- /barrel/main.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/main.rkt -------------------------------------------------------------------------------- /barrel/parser-test.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/parser-test.rkt -------------------------------------------------------------------------------- /barrel/parser.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/parser.rkt -------------------------------------------------------------------------------- /barrel/reader.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/reader.rkt -------------------------------------------------------------------------------- /barrel/scribblings/barrel.scrbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/scribblings/barrel.scrbl -------------------------------------------------------------------------------- /barrel/tokenizer.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/tokenizer.rkt -------------------------------------------------------------------------------- /barrel/util.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/barrel/util.rkt -------------------------------------------------------------------------------- /examples/fibonacci.brl: -------------------------------------------------------------------------------- 1 | [1≤]1-:1-]ν -------------------------------------------------------------------------------- /examples/helloworld.brl: -------------------------------------------------------------------------------- 1 | "hi world" -------------------------------------------------------------------------------- /examples/map.brl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/examples/map.brl -------------------------------------------------------------------------------- /examples/quine.brl: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /tests/if.brl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joes-esolangs/barrel/HEAD/tests/if.brl -------------------------------------------------------------------------------- /tests/random.brl: -------------------------------------------------------------------------------- 1 | {1.a}a --------------------------------------------------------------------------------