aboutsummaryrefslogtreecommitdiffstats
path: root/example/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/main.c')
-rw-r--r--example/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/example/main.c b/example/main.c
new file mode 100644
index 0000000..6bd3334
--- /dev/null
+++ b/example/main.c
@@ -0,0 +1,9 @@
+int main() {
+ int x;
+ int y;
+ int z;
+ y = 2;
+ z = 3;
+ x = y * z;
+ return x;
+}