Courtesy of <<a href="https://codeberg.org/loke/array#what-the-language-looks-like" rel="nofollow">https://codeberg.org/loke/array#what-the-language-looks-like</a>><p>> The first line of code in the following example assigns a string to the variable A, and the second line splits the string at instances of -, returning an array of arrays (a string in Kap is nothing more than a one-dimensional array of characters):<p><pre><code> A ← "this-is-a-demo"
A ⊂⍨ A≠@-
</code></pre>
Oh, I see