initial commit

This commit is contained in:
2026-02-26 14:57:24 -06:00
commit 12be649bb7
7 changed files with 117 additions and 0 deletions

10
vd.hc Normal file
View File

@@ -0,0 +1,10 @@
I32 voodoo(I32 testval)
{
if (testval == 1) {
return 0;
} else if (testval == 0) {
return 1;
}
return 69;
}