We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b400512 commit 2689d56Copy full SHA for 2689d56
README.md
@@ -37,6 +37,13 @@ make
37
[More information on llvm in mingw.](https://github.com/mstorsjo/llvm-mingw)
38
39
40
+#### Dependencies
41
+
42
+Note: These are installed automatically via CPM and cmake.
43
44
+* simdjson
45
+* cxxopts
46
47
### Resources
48
49
* [Simple and Efficient Construction of Static Single
etc/simple.b
@@ -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
0 commit comments