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

https://github.com/aboominister25/lite

an imperative and compiled programming language designed to be developer friendly
https://github.com/aboominister25/lite

programming-language programming-languages

Last synced: 7 days ago
JSON representation

an imperative and compiled programming language designed to be developer friendly

Awesome Lists containing this project

README

          

# The Lite Programming Language

Lite is a general purpose and easy to learn programming language. Lite aims to be both easy to read and write, while also enabling the development of fast and efficient programs.

Lite is still under heavy development, and has not yet reached a working stage.

Here's a taste of the eventual syntax

```scala
func fib(n: Int) -> Int do
if n < 2 do
return n
end

fib(n - 1) + fib(n - 2)
end

func main() do
let fib_of_10 = fib(10)
println(fib_of_10)
end
```

You can look at [OVERVIEW.md](OVERVIEW..md) for a more in-depth overview of the language features.