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

https://github.com/a2p1k02/lumin

Lumin is a simple programming language
https://github.com/a2p1k02/lumin

interpreter lumin programming-language rust rust-lang

Last synced: 7 months ago
JSON representation

Lumin is a simple programming language

Awesome Lists containing this project

README

          

# LUMIN

## Thus far this language generates C code to execute its program


This is a simple programming language.

So, my wife wants to start learning programming.

And I decided to create a programming language for her.

Therefore, this project can be modified if my wife wants to change the programming language :)

## Example
```kotlin
fun foo(x, y) {
x + y;
}
```