Re: [Bug-apl] Parsing error?
__ _ __ __ _____ __ / // | / // / / / / | / __ \ / / / / __ / |/ // / / / / /| | / /_/ // / / /_/ // /| // /_/ / / ___ | / // /___ \//_/ |_/ \/ /_/ |_|/
[Bug-apl] Parsing error?
Hi, I am newbie on APL, so I am not sure below is a bug or not :-) v ← (1 2 3) (4 5 6) f ← {1+⍵} f (⊂ 1 0 1)/¨v SYNTAX ERROR f(⊂1 0 1)/¨v ^ ^ However, adding parentheses works: f((⊂1 0 1)/¨v) 2 4 5 7 But f is function, with APL's right-associative