Forsp is a programming language created in 2024 by Anthony Bonkoski.
#1625on PLDB | 0Years Old |
git clone https://github.com/xorvoid/forsp
Forsp: A Forth+Lisp Hybrid Lambda Calculus Language
(
; ... SNIP ... Assuming "Y" and "if" are defined previously
($g (^g Y)) $rec ; syntax sugar for applying the Y-Combinator
($self $n
(^n 1 - self ^n *) 1 0 ^n eq if
) rec $factorial
5 factorial print
)