Re: [Bug-apl] alias for built-in functions

2015-09-05 Thread Alexey Veretennikov
Hi, Ah my bad, now it works for me. The problem was I already defined variable DISPLAY with a numeric value previously, and unable to reassign it to a function without prior erasing it. Br, /Alexey On 04/09/15 21:18, Juergen Sauermann wrote: Hi Alexey, it works on my machine: *DISPLAY←{8⎕

Re: [Bug-apl] alias for built-in functions

2015-09-04 Thread Christian Robert
Working fine here Xtian. D←{24 ⎕cr ⍵} D ⍳4 ┌4──┐ │1 2 3 4│ └───┘ t←(3 4 ⍴ 12?100) (4 5 ⍴⍳20) D t ┌2──┐ │┌4───┐ ┌5─┐│ │377 85 51 69│ 4 1 2 3 4 5││ ││ 8 42 46 41│ │ 6 7 8 9 10││ ││93 67 100 52│ │11 12 13 14 1

Re: [Bug-apl] alias for built-in functions

2015-09-04 Thread Juergen Sauermann
Hi Alexey, it works on my machine:   DISPLAY←{8⎕CR ⍵}   ⎕CR 'DISPLAY' λ←DISPLAY ⍵ λ←8⎕CR ⍵       DISPLAY 1 2 3 ┌→┐ │1 2 3│ └─┘ Yo