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
- Host: GitHub
- URL: https://github.com/zesterer/fula
- Owner: zesterer
- Created: 2019-08-08T12:44:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-14T12:48:24.000Z (over 6 years ago)
- Last Synced: 2025-04-11T16:23:58.823Z (9 months ago)
- Language: Rust
- Homepage:
- Size: 87.9 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```