RosettaCodeData/Task/Generic-swap/Modula-3/generic-swap-5.mod3
2023-07-01 13:44:08 -04:00

12 lines
207 B
Text

MODULE Main;
IMPORT IntSwap, IO, Fmt;
VAR left := 10;
right := 20;
BEGIN
IO.Put("Left = " & Fmt.Int(left) & "\n");
IntSwap.Swap(left, right);
IO.Put("Left = " & Fmt.Int(left) & "\n");
END Main.