RosettaCodeData/Task/Generic-swap/Metafont/generic-swap-2.metafont
2023-07-01 13:44:08 -04:00

12 lines
164 B
Text

j := 10;
i := 5;
show j, i;
swap(j,i);
show j, i;
boolean truth[];
truth1 := true;
truth2 := false;
show truth1, truth2;
swap(truth1,truth2);
show truth1, truth2;