aboutsummaryrefslogtreecommitdiff
path: root/examples/gcd.imp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gcd.imp')
-rw-r--r--examples/gcd.imp4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/gcd.imp b/examples/gcd.imp
index 5ab0bbf..530f347 100644
--- a/examples/gcd.imp
+++ b/examples/gcd.imp
@@ -11,6 +11,4 @@ procedure gcd(a, b; r) begin
end;
end;
-x := 48;
-y := 18;
-gcd(x, y; result);
+gcd(48, 18; result);