12 lines
207 B
Text
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.
|