BugInTheSYS

Untitled

Oct 20th, 2011
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.09 KB | None | 0 0
  1. precedure Swap( var a, b: Integer );
  2. begin
  3.   a = a xor b;
  4.   b = b xor a;
  5.   a = a xor b;
  6. end;
  7.  
Advertisement
Add Comment
Please, Sign In to add comment