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