Execute: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Built-in|Format|⍕}} is a primitive function. It allows the user to interpret a string as APL code. == Examples == <source lang=apl> ⍎'⍳10' 1 2 3 4 5 6 7 8 9...") |
No edit summary |
||
Line 1: | Line 1: | ||
{{Built-in| | {{Built-in|Execute|⍎}} is a [[primitive function]]. It allows the user to interpret a string as APL code. | ||
== Examples == | == Examples == |
Revision as of 09:52, 10 February 2020
⍎
|
Execute (⍎
) is a primitive function. It allows the user to interpret a string as APL code.
Examples
⍎'⍳10' 1 2 3 4 5 6 7 8 9 10