Right, I almost forgot about ⍺ and ⍵. I added them to the script together with a few more and some corrections. The updated script for the APL symbols now is:
NB. APL Symbols... NB. http://xahlee.info/comp/APL_symbol_meaning.html NB. http://xahlee.info/comp/unicode_APL_symbols.html NB. ¯ × =. * ÷ =. % ∘ =. @: NB. Compose operator (to be completed) ∣ =. | ∼ =. -. ≠ =. ~: ≤ =. <: ≥ =. >: NB. ≬ ⌶ ⋆ =. ^ NB.⌾ ⍟ =. ^. ⌽ =. |.&.|: ⊖ =. |. ⍉ =. |: NB. ⍝ ⍦ ⍧ ⍪ ⍫ ⍬ =. i. 0 NB. ⍭ ← ↑ =. {. NB. → ↓ =. }. NB. ∆ ∇ ∧ =. *. ∨ =. +. ∩ =. [ -. -. ∪ =. ~. : ~.@:, ⌈ =. >. ⌊ =. <. ∈ =. e. ⊤ =. #: ⊥ =. #. ⊂ =. < ⊃ =. > ⌿ =. / ⍀ =. /\ NB. ⍅ ⍆ ⍏ ⍖ ⍊ ⍑ ⍋ =. /: ⍒ =. \: ⍎ =. ". ⍕ =. ": ⍱ =. -.@:+. ⍲ =. -.@:*. ○ =. o. ⍳ =. i. ⍴ =. $ ⍵ =. ] ⍺ =. [ NB. ⍶ ⍷ ⍸ ⍹ ⍘ ⍙ ⍚ ⍛ ⍜ ⍮ ¨ =. &.> NB. ⍡ ⍢ =. &. ⍣ =. ^: NB. ⍤ ⍥ ⍨ =. ~ NB. ⍩ ⎕ ⍞=. 1!:1@(1"_)@:(1!:2&2@:(] [ (('(wd)'"_) 128!:2 ])@:('msgs'"_))@:[) NB. + or - NB. ⍠ ⍯ ⍰ ⍌ ⍍ ⍐ ⍓ ⍔ ⍗ ⌷ ⌸ ⌹ =. %. NB. ⌺ ⌻ ⌼ ⍁ ⍂ ⍃ ⍄ ⍇ ⍈ ≡ =. -: ≢ =. -.@:-: On Thu, Nov 30, 2017 at 3:29 AM, Erling Hellenäs <[email protected]> wrote: > I am fond of ⍺ and ⍵. > > ⍺=. [ > > ⍵=. ] > > plus=. ⍺ + ⍵ > > 1 plus 1 > > 2 > > > Cheers, > > Erling Hellenäs > > > > > > Den 2017-11-30 kl. 02:16, skrev Jose Mario Quintana: > >> If verbs, adverbs, and conjunctions are tacit then fixing would reveal the >> primitives involved... Point taken though, >> >> "85. Though the Chinese should adore APL, it's FORTRAN they put their >> money >> on." >> >> >> >> >> On Wed, Nov 29, 2017 at 11:43 AM, Raul Miller <[email protected]> >> wrote: >> >> Just be aware that this can turn into a turing tarpit, and be safe. >>> >>> Here's some hints at future issues, though: >>> >>> http://openbsd-archive.7691.n7.nabble.com/xterm-1- >>> changing-UTF-8-characters-when-copy-pasting-td331767.html#a331769 >>> >>> Thanks, >>> >>> -- >>> Raul >>> ---------------------------------------------------------------------- >>> For information about J forums see http://www.jsoftware.com/forums.htm >>> >>> ---------------------------------------------------------------------- >> For information about J forums see http://www.jsoftware.com/forums.htm >> > > ---------------------------------------------------------------------- > For information about J forums see http://www.jsoftware.com/forums.htm > ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
