reforth is a programming language created in 2013.
#1696on PLDB | 11Years Old |
git clone https://github.com/seanpringle/reforth
Reforth tries to solve my gripes without fundamentally changing Forth's elegance and simplicity.
begin
condition
if operation
next
end
condition1
if operation1
leave
end
end
10 for
condition
if operation
leave
end
end