Tao is a programming language created in 2020 by Joshua Barretto.
| #1068on PLDB | 6Years Old |
git clone https://github.com/zesterer/taoA statically-typed functional language with polymorphism, typeclasses, sum types, pattern-matching, first-class functions, currying, good diagnostics, and much more!
fn factorial =
| 0 => 1
\ y ~ x + 1 => y * factorial(x)