A functional programming language based on graph reduction
G (WIP)
G is a functional programming based on graph reduction. Its main source of inspiration is Clean. G also uses the same ABC machine for its backend. Here is a small taste of it:
fac 0 = 1
fac n = n * (fac (n - 1))
Start = fac 20