Format: Difference between revisions

Jump to navigation Jump to search
76 bytes added ,  13:39, 10 February 2020
no edit summary
No edit summary
No edit summary
Line 3: Line 3:
== Examples ==
== Examples ==


Format in its [[monadic]] form, alongside [[ravel]], allows the user to concatenate numbers with strings:
Format in its [[monadic]] form, allows the user to convert [[array]]s of any [[type]] into [[simple]] character arrays (for example for concatenation with other character arrays):
<source lang=apl>
<source lang=apl>
       supper ← 10
       supper ← 10
Line 9: Line 9:
I ate 10 shrimp.
I ate 10 shrimp.
</source>
</source>
It is very powerful when combined with [[execute]], which allows the user to interpret a string as APL code:
It is very powerful when combined with [[Execute]], allowing the user to construct APL code:
<source lang=apl>
<source lang=apl>
       data ← 7
       data ← 7
Line 15: Line 15:
42
42
</source>
</source>
{{APL built-ins}}

Navigation menu