@Stefan_Salewski If you want something Ruby-like, why not use `=>` from 
`future`?

Like this:
    
    
    import future, sequtils
    
    var nums = @[1, 2, 3, 4]
    
    nums.apply(el => el * 3)
    echo nums
    

Reply via email to