aboutsummaryrefslogtreecommitdiff
path: root/example/example.imp
diff options
context:
space:
mode:
Diffstat (limited to 'example/example.imp')
-rw-r--r--example/example.imp12
1 files changed, 0 insertions, 12 deletions
diff --git a/example/example.imp b/example/example.imp
deleted file mode 100644
index a5bc5dd..0000000
--- a/example/example.imp
+++ /dev/null
@@ -1,12 +0,0 @@
-procedure factorial(n;r) begin
- if n <= 0 then
- r := 1;
- else
- m := n - 1;
- factorial(m;r);
- r := r * n;
- end;
-end;
-
-n := 5;
-factorial(n;r); \ No newline at end of file