aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/SimpleSubtraction.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/SimpleSubtraction.c')
-rw-r--r--c_compiler/test/in/SimpleSubtraction.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c_compiler/test/in/SimpleSubtraction.c b/c_compiler/test/in/SimpleSubtraction.c
new file mode 100644
index 0000000..4d88002
--- /dev/null
+++ b/c_compiler/test/in/SimpleSubtraction.c
@@ -0,0 +1,6 @@
+int main() {
+ int a = 23;
+ int b = 19;
+ int c = a - b;
+ return c;
+}