Tacit programming: Difference between revisions

Jump to navigation Jump to search
Line 46: Line 46:
</source>
</source>


The ''left tine'' of a fork (but not an atop) can be an array:
The ''left tine'' of a fork can be an array:
<source lang=apl>
<source lang=apl>
   (A g h) ⍵ ⬄ A g (  h ⍵)
   (A g h) ⍵ ⬄ A g (  h ⍵)
⍺ (A g h) ⍵ ⬄ A g (⍺ h ⍵)
⍺ (A g h) ⍵ ⬄ A g (⍺ h ⍵)
</source>
</source>
Only [[dzaima/APL]] allows <source lang=apl inline>(A h)</source>, which it treats as <source lang=apl inline>A∘h</source>.<ref>dzaima/APL: [https://github.com/dzaima/APL/blob/ceea05e25687988ed0980a4abf4b9249b736543f/docs/differences.txt#L19 Differences from Dyalog APL]. Retrieved 09 Jan 2020.</ref>


== Examples ==
== Examples ==