fork download
  1. a = 12
  2. b = 10
  3. a, b = b, a
  4. p "a = #{a}"
  5. p "b = #{b}"
Success #stdin #stdout 0.01s 7408KB
stdin
Standard input is empty
stdout
"a = 10"
"b = 12"