Common list elements: Difference between revisions

Add APL
(Haskell added)
(Add APL)
Line 8:
'''output''' = [3,6,9]
<br><br>
 
=={{header|APL}}==
APL has the built-in intersection function <code>∩</code>
 
<lang APL> ∩/ (2 5 1 3 8 9 4 6) (3 5 6 2 9 8 4) (1 3 7 9 6)
3 9 6 </lang>
 
=={{header|AutoHotkey}}==
2,114

edits