Skip to content

Commit

Permalink
chore: add smaller b program for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jahan-addison committed Jan 2, 2025
1 parent b400512 commit 2689d56
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ make
[More information on llvm in mingw.](https://github.com/mstorsjo/llvm-mingw)


#### Dependencies

Note: These are installed automatically via CPM and cmake.

* simdjson
* cxxopts

### Resources

* [Simple and Efficient Construction of Static Single
Expand Down
8 changes: 8 additions & 0 deletions etc/simple.b
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
main () {
auto j;
j = 0;
while( j <= 5 ) {
putchar('a');
j++;
}
}
Empty file removed etc/small.b
Empty file.

0 comments on commit 2689d56

Please sign in to comment.