diff options
Diffstat (limited to 'voodoo.hc')
| -rw-r--r-- | voodoo.hc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/voodoo.hc b/voodoo.hc new file mode 100644 index 0000000..126db88 --- /dev/null +++ b/voodoo.hc @@ -0,0 +1,10 @@ +I32 voodoo(I32 testval) +{ + if (testval == 1) { + return 0; + } else if (testval == 0) { + return 1; + } + + return 69; +} |
