in reply to Re: Why Perl Is Not My Favourite Functional Programming Language
in thread A mini-language for sequences (part 1)
So I'd currently write your code as:infix:«+» infix:<<+>> infix:{'+'}
See http://www.wall.org/~larry/syn for preprints of the most recent Synopses. And http://www.wall.org/~larry/apo has Apocalypses annotated with "Update" sections.my &plus_op_subref = &infix:«+»; my ¬_op_subref = &prefix:«!»; say plus_op_subref(3, 2); # 5
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Why Perl Is Not My Favourite Functional Programming Language
by iblech (Friar) on Nov 07, 2004 at 11:31 UTC |