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

https://github.com/cotowali/litsu


https://github.com/cotowali/litsu

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# Litsu

A statically-typed functional language that is transpiled into POSIX sh.

## Example

```ml
(* fib.lit *)
let rec fib n =
if n <= 1 then
n
else
fib (n - 1) + fib (n - 2)
in fib 10
```

```
$ litc fib.lit | sh
55
```

## Build

```
$ dotnet build
```