Simple examples: Difference between revisions

Jump to navigation Jump to search
31 bytes removed ,  16:19, 20 November 2019
Miraheze>Adám Brudzewsky
No edit summary
(4 intermediate revisions by 3 users not shown)
Line 28: Line 28:
will transform a list of strings representing words into a comma-separated list:
will transform a list of strings representing words into a comma-separated list:
<source lang=apl>
<source lang=apl>
    {⍺,', ',⍵}⌿'cow' 'sheep' 'cat' 'dog'
      {⍺,', ',⍵}⌿'cow' 'sheep' 'cat' 'dog'
┌────────────────────┐
┌────────────────────┐
│cow, sheep, cat, dog│
│cow, sheep, cat, dog│
Line 133: Line 133:


=== Grille cypher ===
=== Grille cypher ===
A [https://en.wikipedia.org/wiki/Grille_(cryptography) grille] is a 500 year old method for encrypting messages.
A [[wikipedia:grille (cryptography)|grille]] is a 500 year old method for encrypting messages.
[[File:Grille.png|none|500px|frameless|left|The application of a grille cypher]]
[[File:Grille.png|none|500px|frameless|The application of a grille cypher]]
<p>
<p>
Represent both the grid of letters and the grille as character matrices.
Represent both the grid of letters and the grille as character matrices.
Line 159: Line 159:
</source>
</source>


{{APL programming language}}
{{APL development}}

Navigation menu