Execute: Difference between revisions

From APL Wiki
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 difference)

Revision as of 09:51, 10 February 2020

Format () 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