fork download
  1. #pragma indent
  2. using System;
  3. using Nemerle.Collections.List;
  4.  
  5. def Add(x,y)
  6. x+y;
  7.  
  8. def r = Map($[1..10], Add(5, _));
  9. def r = Map(r, 5*_);
  10. Console.WriteLine(r);
Success #stdin #stdout 0.08s 19520KB
stdin
stdout
[30, 35, 40, 45, 50, 55, 60, 65, 70, 75]