« BackKap Programming Langagekapdemo.dhsdevelopments.comSubmitted by 082349872349872 4 days ago
  • mdaniel 4 days ago

    Courtesy of <https://codeberg.org/loke/array#what-the-language-looks-like>

    > 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):

      A ← "this-is-a-demo"
      A ⊂⍨ A≠@-
    
    Oh, I see