https://github.com/danilaxila3/moom
An esoretic programming language
https://github.com/danilaxila3/moom
Last synced: about 2 months ago
JSON representation
An esoretic programming language
- Host: GitHub
- URL: https://github.com/danilaxila3/moom
- Owner: danilaxila3
- Created: 2025-02-02T17:22:01.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-02-04T16:18:42.000Z (4 months ago)
- Last Synced: 2025-02-04T17:27:08.149Z (4 months ago)
- Language: C
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
moom
the MOOM programming language
moom is an interpreted, esoretic programming language written in C\
It has python-like syntax# Building
```bash
git clone https://github.com/danilaxila3/moom.git
cd moom
make
```Then run `bin/moom ` to run a file
# Full syntax
```
moomLet var = value
var = value
var += value:float
var *= value:float
moomPrint("string", var...)
moomPrintNl("string", var...)
moomInput(var)
```That's all there is\
No comment support btw# Example (Calculator)
```
moomLet x = 0
moomLet y = 0moomPrint("Enter x: ")
moomInput(x)
moomPrint("Enter y: ")
moomInput(y)moomLet z = x
moomLet w = xz += y
w *= ymoomPrintNl("x + y is ", z)
moomPrintNl("x * y is ", w)
```