fork download
  1. using System.Console;
  2. mutable a=1;
  3. mutable b=2;
  4. a<->b;
  5. WriteLine((a, b));
Success #stdin #stdout 0.09s 19312KB
stdin
Standard input is empty
stdout
(2, 1)