aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/SimpleAdd.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/SimpleAdd.c')
-rw-r--r--c_compiler/test/in/SimpleAdd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/c_compiler/test/in/SimpleAdd.c b/c_compiler/test/in/SimpleAdd.c
new file mode 100644
index 0000000..a04941d
--- /dev/null
+++ b/c_compiler/test/in/SimpleAdd.c
@@ -0,0 +1,5 @@
+int main() {
+ int a = 68;
+ int b = 38;
+ return a + b;
+}