aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple_return.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple_return.c')
-rw-r--r--examples/simple_return.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/simple_return.c b/examples/simple_return.c
new file mode 100644
index 0000000..cb33687
--- /dev/null
+++ b/examples/simple_return.c
@@ -0,0 +1,4 @@
+int main() {
+ int x = 5;
+ return x;
+}