Here’s the Matrix in plaintext:
this post was submitted on 12 Sep 2024
3 points (80.0% liked)
Kakoune
23 readers
7 users here now
Unofficial community for talking about the kakoune text-editor.
Official website: http://kakoune.org/
Official Forum: https://discuss.kakoune.com/
Github: https://github.com/mawww/kakoune
The Kakoune logo is designed by p0nce
founded 1 year ago
MODERATORS
hehe :p
for matrices, the best I've come up with is either a nested list approach like A = [[a, b], [c, d]]
or a maybe this
+- -+
| a b |
A = | |
| c d |
+- -+