ef

From Esolang
Jump to navigation Jump to search
ef \ esoteric forth \
Designed by Total Vacuum
Appeared in 2019
Memory system stack-based
Computational class Turing complete
Major implementations ef[1]
File extension(s) .ef

ef \ esoteric forth \ is an esoteric programming language designed by Total Vacuum in 2019.

command     ef                   FORTH
----------  -------------------  --------------------------
comment     \ \                  ( ... )
include     %                    S" filename" INCLUDED
number      0-9                  0-9
user        a-z                  a-z
define      : ;                  : ... ;
math        + - * / < = > & | ^  + - * / < = > AND OR XOR
stack       # $ ? _              #UP $WAP ?ICK DR_P
load/store  @ ! , .              @ ! C@ C!
string      " "                  S" string"
char        ' '                  CHAR c
asm         ` `                  CODE ... END-CODE
if          { ~ }                IF ... ELSE ... THEN
while       ( )                  IF BEGIN ... 0= UNTIL THEN
loop        [ ]                  DO ... -1 +LOOP

under construction ...