├── .gitignore ├── LICENSE ├── README.md ├── bfjit.c ├── examples ├── cat.bf ├── hello.bf └── test.bf └── nob.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/bfjit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/bfjit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/bfjit/HEAD/README.md -------------------------------------------------------------------------------- /bfjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/bfjit/HEAD/bfjit.c -------------------------------------------------------------------------------- /examples/cat.bf: -------------------------------------------------------------------------------- 1 | [ cat by https://github.com/mohad12211 ] 2 | 3 | ,[.[-],] -------------------------------------------------------------------------------- /examples/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/bfjit/HEAD/examples/hello.bf -------------------------------------------------------------------------------- /examples/test.bf: -------------------------------------------------------------------------------- 1 | [-] -------------------------------------------------------------------------------- /nob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/bfjit/HEAD/nob.h --------------------------------------------------------------------------------