Difference between revisions of "APL Bridge Examples"
Jump to navigation
Jump to search
| Line 7: | Line 7: | ||
'abcd' ∘.= 'cabbage' | 'abcd' ∘.= 'cabbage' | ||
| + | |||
| + | [[File:Apl1.png|thumb|String Inspection]] | ||
| + | |||
| + | [[File:Apl2.png|thumb|Pascal Triangle]] | ||
=Example: Pascal Triangle in APL= | =Example: Pascal Triangle in APL= | ||
Revision as of 19:31, 13 February 2025
APL Bridge Examples
Refer to [| Simple APL Examples to try in Z]
For example, try:
'abcd' ∘.= 'cabbage'
Example: Pascal Triangle in APL
Pascal ← {' '@(0=⊢)↑0,⍨¨a⌽¨⌽∊¨0,¨¨a∘!¨a←⌽⍳⍵} ⍝ Create a one-line user function called Pascal
Pascal 7 ⍝ Run function Pascal for seven rows and show the results below: