├── .travis.yml ├── LICENSE ├── README.md ├── programs ├── add_five.bf ├── alphabet.bf ├── cat.bf ├── conditional.bf ├── copy.bf ├── counter.bf ├── division.bf ├── esoapi.bf ├── exponent.bf ├── fibonacci.bf ├── hello_world.bf ├── interpreter.bf ├── loop.bf ├── math.bf ├── multiply.bf ├── mutli_line.bf ├── nested_loop.bf ├── optimize.bf ├── powers.bf ├── powers_of_three.bf ├── rot13.bf ├── simple.bf ├── smart_alphabet.bf ├── squares.b.raw └── squares.bf └── tm.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/README.md -------------------------------------------------------------------------------- /programs/add_five.bf: -------------------------------------------------------------------------------- 1 | >,<, 2 | [>-<-] 3 | -------------------------------------------------------------------------------- /programs/alphabet.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/alphabet.bf -------------------------------------------------------------------------------- /programs/cat.bf: -------------------------------------------------------------------------------- 1 | ,[.,] 2 | -------------------------------------------------------------------------------- /programs/conditional.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/conditional.bf -------------------------------------------------------------------------------- /programs/copy.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/copy.bf -------------------------------------------------------------------------------- /programs/counter.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/counter.bf -------------------------------------------------------------------------------- /programs/division.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/division.bf -------------------------------------------------------------------------------- /programs/esoapi.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/esoapi.bf -------------------------------------------------------------------------------- /programs/exponent.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/exponent.bf -------------------------------------------------------------------------------- /programs/fibonacci.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/fibonacci.bf -------------------------------------------------------------------------------- /programs/hello_world.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/hello_world.bf -------------------------------------------------------------------------------- /programs/interpreter.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/interpreter.bf -------------------------------------------------------------------------------- /programs/loop.bf: -------------------------------------------------------------------------------- 1 | +++ 2 | [ 3 | ->+++< 4 | ] 5 | -------------------------------------------------------------------------------- /programs/math.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/math.bf -------------------------------------------------------------------------------- /programs/multiply.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/multiply.bf -------------------------------------------------------------------------------- /programs/mutli_line.bf: -------------------------------------------------------------------------------- 1 | +++ 2 | > 3 | ++++ 4 | -------------------------------------------------------------------------------- /programs/nested_loop.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/nested_loop.bf -------------------------------------------------------------------------------- /programs/optimize.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/optimize.bf -------------------------------------------------------------------------------- /programs/powers.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/powers.bf -------------------------------------------------------------------------------- /programs/powers_of_three.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/powers_of_three.bf -------------------------------------------------------------------------------- /programs/rot13.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/rot13.bf -------------------------------------------------------------------------------- /programs/simple.bf: -------------------------------------------------------------------------------- 1 | "hello 2 | ++++>+>>++ 3 | " 4 | \ 5 | -------------------------------------------------------------------------------- /programs/smart_alphabet.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/smart_alphabet.bf -------------------------------------------------------------------------------- /programs/squares.b.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/squares.b.raw -------------------------------------------------------------------------------- /programs/squares.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/programs/squares.bf -------------------------------------------------------------------------------- /tm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gandalf-/BrainBash/HEAD/tm.sh --------------------------------------------------------------------------------