fula

A functional programming language with Hindley-Milner type inference

Stars
6

Fula

Fula is a statically-typed functional programming language.

Example

const factorial = |x|
	if x = 0
	then 1
	else x * factorial(x - 1);