Skip to content

cotowali/litsu

Repository files navigation

Litsu

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

Example

(* 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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published