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
- Host: GitHub
- URL: https://github.com/a2p1k02/lumin
- Owner: a2p1k02
- Created: 2025-05-05T10:43:33.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-05-05T14:12:09.000Z (9 months ago)
- Last Synced: 2025-06-14T18:55:25.828Z (8 months ago)
- Topics: interpreter, lumin, programming-language, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
```