Tao is a programming language created in 2020 by Joshua Barretto.
#1175on PLDB | 4Years Old |
git clone https://github.com/zesterer/tao
A 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)