An open API service indexing awesome lists of open source software.

https://github.com/zesterer/fula

A functional programming language with Hindley-Milner type inference
https://github.com/zesterer/fula

Last synced: 4 months ago
JSON representation

A functional programming language with Hindley-Milner type inference

Awesome Lists containing this project

README

          

# Fula

Fula is a statically-typed functional programming language.

## Example

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