Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hrszpuk/lion
- Owner: hrszpuk
- License: mit
- Created: 2024-09-07T05:35:07.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-23T21:36:30.000Z (3 months ago)
- Last Synced: 2024-12-10T18:09:01.601Z (about 2 months ago)
- Topics: compiler, llvm, llvm-compiler, llvm-frontend, programming-languages
- Language: C++
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
}
```