On May 28, 2:37am, "Paul A." <cyril.st... / gmail.com> wrote:
> Hi,
>
> Just a thin post in order to purpose this:
>
> I think it could be cool to call lambda function just like: ¦Ë
>
> Such as:
>
> a = 0
> my_while ¦Ë { a < 5 } do
>  puts a
>  a += 1
> end
>
> I think ¦Ë is more human then ->

For that matter, if we're going by similarity, doesn't /\ look much
more like ¦Ë than -> ?

  f = /\(x){ x < 5 }