initial commit

This commit is contained in:
Barrett Ruth 2026-02-07 00:45:47 -05:00
commit 23d4795228
99 changed files with 6691 additions and 0 deletions

View file

@ -0,0 +1,19 @@
return {
s('/* ', fmt('/* {} */', { i(1) })),
s('pr', fmt('printf("{}", {});', { i(1), i(2) })),
s(
'main',
fmt(
[[
#include <stdio.h>
int main(void) {{
{}
return 0;
}}
]],
{ i(1) }
)
),
}