Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hrszpuk/lion

:lion: A high-level, multi-paradigm scripting language
https://github.com/hrszpuk/lion

compiler llvm llvm-compiler llvm-frontend programming-languages

Last synced: 20 days ago
JSON representation

:lion: A high-level, multi-paradigm scripting language

Awesome Lists containing this project

README

        

# Lion

```cpp
func average(list [int] ) -> int {
let sum int = 0
for i in list {
sum += list[i]
}
return sum / list.length()
}
```