File tree Expand file tree Collapse file tree 5 files changed +9
-1
lines changed Expand file tree Collapse file tree 5 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ There are several sites that do these kinds of comparisons:
3232| :---: | :--------: | :---: | :----------------------------------------------------------------------------------: | :-------------------------------------------------------------------------: | :------------------------------------------------------------------: |
3333| 💚 | Dyalog APL | | [ dyalog.com] ( https://www.dyalog.com/ ) | [ Dyalog Help] ( https://help.dyalog.com/18.2/ ) | [ TryAPL] ( https://tryapl.org/ ) |
3434| 💛 | Kap | | [ kapdemo.dhsdevelopments.com] ( https://kapdemo.dhsdevelopments.com/ ) | [ Kap Ref] ( https://kapdemo.dhsdevelopments.com/reference.html ) | [ Kap Interpreter] ( https://kapdemo.dhsdevelopments.com/clientweb2/ ) |
35- | 💛 | TinyAPL | | [ tinyapl.rubenverg.com/ ] ( https://tinyapl.rubenverg.com/ ) | [ TinAPL Primitives] ( https://tinyapl.rubenverg.com/docs/primitive ) | [ Online REPL] ( https://tinyapl.rubenverg.com/run/latest/ ) |
35+ | 💛 | TinyAPL | | [ tinyapl.rubenverg.com] ( https://tinyapl.rubenverg.com/ ) | [ TinAPL Primitives] ( https://tinyapl.rubenverg.com/docs/primitive ) | [ Online REPL] ( https://tinyapl.rubenverg.com/run/latest/ ) |
3636| 💚 | J | | [ jsoftware.com] ( https://www.jsoftware.com/ ) | [ J NuVoc] ( https://code.jsoftware.com/wiki/NuVoc ) | [ J Playground] ( https://jsoftware.github.io/j-playground/bin/html2/# ) |
3737| 💚 | BQN | | [ mlochbaum.github.io/BQN] ( https://mlochbaum.github.io/BQN/ ) | [ BQN Docs] ( https://mlochbaum.github.io/BQN/doc/index.html ) | [ BQNPAD] ( https://bqnpad.mechanize.systems/ ) |
3838| 💚 | Uiua | | [ uiua.org] ( https://www.uiua.org/ ) | [ Uiua Docs] ( https://www.uiua.org/docs ) | [ UiuaPAD] ( https://www.uiua.org/pad ) |
Original file line number Diff line number Diff line change 55| | Identity Matrix |
66| :-------: | :--------------------------------------------------------------------------------: |
77| APL | ` ∘.=⍨⍳ ` |
8+ | Kap | ` =⌻⍨⍳ ` |
9+ | TinyApl | ` =⊞⍨⍳ ` |
810| J | ` e.@i. ` |
911| BQN | ` =⌜˜↕ ` |
1012| Uiua | ` ⊞=.⇡ ` |
Original file line number Diff line number Diff line change 55| | Iota Matrix |
66| :-------: | :-----------------------------------: |
77| APL | ` 3 4⍴⍳12 ` |
8+ | Kap | ` 3 4⍴⍳12 ` |
9+ | TinyAPL | ` 3‿4⍴⍳12 ` |
810| J | ` i.3 4 ` |
911| BQN | ` 3‿4⥊↕12 ` |
1012| Uiua | ` ↯3_4⇡12 ` |
Original file line number Diff line number Diff line change 55| | Reverse In Memory | Reverse Columns | Reverse Rows |
66| :-------: | :------------------------------------: | :------------------------------------------------------------: | :------------------------------------: |
77| APL | ravel, reverse, reshape | ` ⊖ ` | ` ⌽ ` <br > ` ⊖⍤1 ` |
8+ | Kap | ` ⊖⍢, ` | ` ⊖ ` | ` ⊖⍤1 ` |
9+ | TinyAPL | ` ⊖⍢, ` | ` ⊖ ` | ` ⊖⍤1 ` |
810| J | ravel, reverse, reshape | ` \|. ` | ` \|."1 ` |
911| BQN | ` ⌽⌾⥊ ` | ` ⌽ ` | ` ⌽˘ ` <br >` ⌽⎉1 ` |
1012| Uiua | ` ⍜⇌♭ ` * | ` ⇌ ` | ` ≡⇌ ` |
Original file line number Diff line number Diff line change 55| | Summing All | Summing Columns | Summing Rows |
66| :-------: | :------------------------------: | :-------------------------------: | :----------------------------------------------------------------------------------------------------: |
77| APL | ` +/, ` | ` +⌿ ` | ` +/ ` <br >` +/⍤1 ` |
8+ | Kap | ` +/, ` | ` +⌿ ` | ` +/ ` <br >` +/⍤1 ` |
9+ | TinyAPL | ` +⍆, ` | ` +⍆ ` | ` +⍆⍤1 ` |
810| J | ` +/&, ` | ` +/ ` | ` +/"1 ` |
911| BQN | ` +´⥊ ` | ` +˝ ` | ` +´˘ ` <br >` +˝⎉1 ` |
1012| Uiua | ` /+♭ ` | ` /+ ` | ` ≡/+ ` |
You can’t perform that action at this time.
0 commit comments