Concurrent computing: Difference between revisions

Add APL
(→‎{{header|D}}: add crystal implementation with fibers and channels)
(Add APL)
Line 39:
)
)</lang>
 
=={{header|APL}}==
{{works with|Dyalog APL}}
 
Dyalog APL supports the <code>&</code> operator, which runs a function on its own thread.
 
<lang APL>{⎕←⍵}&¨'Enjoy' 'Rosetta' 'Code'</lang>
{{out}}
(Example)
<pre>Enjoy
Code
Rosetta</pre>
 
=={{header|Astro}}==
2,096

edits