fork download
  1. #pragma indent
  2. using System.Console;
  3. using Nemerle.Collections;
  4.  
  5. def a=[12,13];
  6. def b=List.Map(a, _.ToString());
  7. WriteLine(b);
  8. WriteLine(a);
Success #stdin #stdout 0.09s 19488KB
stdin
Standard input is empty
stdout
[12, 13]
[12, 13]