Skip to content

Commit b23b850

Browse files
committed
✨ 4 comparisons
1 parent c0e3bc8 commit b23b850

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) |

comparisons/matrix_identity.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
| | Identity Matrix |
66
| :-------: | :--------------------------------------------------------------------------------: |
77
| APL | `∘.=⍨⍳` |
8+
| Kap | `=⌻⍨⍳` |
9+
| TinyApl | `=⊞⍨⍳` |
810
| J | `e.@i.` |
911
| BQN | `=⌜˜↕` |
1012
| Uiua | `⊞=.⇡` |

comparisons/matrix_iota.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
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` |

comparisons/matrix_reversing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
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 | `⍜⇌♭`* | `` | `≡⇌` |

comparisons/matrix_summing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
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 | `/+♭` | `/+` | `≡/+` |

0 commit comments

Comments
 (0)