RosettaCodeData/Task/Generic-swap/Metafont/generic-swap-2.metafont
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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;