Skip to content

Commit 2689d56

Browse files
committed
chore: add smaller b program for debugging
1 parent b400512 commit 2689d56

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ make
3737
[More information on llvm in mingw.](https://github.com/mstorsjo/llvm-mingw)
3838

3939

40+
#### Dependencies
41+
42+
Note: These are installed automatically via CPM and cmake.
43+
44+
* simdjson
45+
* cxxopts
46+
4047
### Resources
4148

4249
* [Simple and Efficient Construction of Static Single

etc/simple.b

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
main () {
2+
auto j;
3+
j = 0;
4+
while( j <= 5 ) {
5+
putchar('a');
6+
j++;
7+
}
8+
}

etc/small.b

Whitespace-only changes.

0 commit comments

Comments
 (0)