about summary refs log tree commit diff stats
path: root/ascii.f
diff options
context:
space:
mode:
Diffstat (limited to 'ascii.f')
-rw-r--r--ascii.f56
1 files changed, 56 insertions, 0 deletions
diff --git a/ascii.f b/ascii.f
new file mode 100644
index 0000000..aef8e29
--- /dev/null
+++ b/ascii.f
@@ -0,0 +1,56 @@
+/ ASCII equivalents for APL-character words /
+
+∇ DROP      ↓       ∇
+∇ DUP       ↑       ∇
+∇ 2DROP     2↓      ∇
+∇ 2DUP      2↑      ∇
+∇ ROT       ⌽       ∇
+∇ -ROT      -⌽      ∇
+∇ SWAP      ↕       ∇
+∇ OVER      ⊤       ∇
+
+∇ *         ×       ∇
+∇ %         ÷       ∇
+∇ MAX       ⌈       ∇
+∇ MIN       ⌊       ∇
+∇ %MOD      ÷MOD    ∇
+
+∇ !=        ≠       ∇
+∇ <=        ≤       ∇
+∇ >=        ≥       ∇
+∇ AND       ∧       ∇
+∇ OR        ∨       ∇
+∇ XOR       ⊕       ∇
+
+∇ 40ROT     40⌽     ∇
+∇ 20ROT     20⌽     ∇
+∇ 10ROT     10⌽     ∇
+∇ 1ROT      1⌽      ∇
+∇ ROR       ⌽>      ∇
+
+∇ RDROP     R↓      ∇
+∇ RDUP      R↑      ∇
+
+∇ EXECUTE   ⍎       ∇
+
+∇ ||        ∥       ∇
+∇ ||)       ∥)      ∇
+
+∇ MAXMIN    ⌈⌊      ∇
+
+∇ NONAME    ⊂       ∇
+
+∇ CODE      ∆       ∇
+∇ <>        ⋄       ∇
+∇ <BUILDS   ◁       ∇
+∇ DOES>     ▷       ∇
+
+∇ LAMBDA    λ       ∇
+
+∇ [[        ⟦       ∇
+∇ ]]        ⟧       ∇
+
+∇ READ      ⍇       ∇
+∇ WRITE     ⍈       ∇
+∇ OPEN      ⍐       ∇
+∇ CLOSE     ⍗       ∇