(Not meant to be taken seriously)
- Variables
- Print statements
- Comments
- Basic If conditionals
- Evaluation between two variables
- Evaluation between a variable and a value
- Clone the repository
- Run
python main.py <file>
with anautum
file as its argument, or run the main file and pass the program text from standard input.
pr "hello, world"
x=10
z=30
y=40
// comentario
// lmao
pr x
pr y
pr z
if y > x
if y > z
pr "y es el mayor"
hello, world
10
40
30
y es el mayor
This project was done during the summer of 2023. It was a fun project to do and I learned a lot about programming languages. I hope you enjoy it as much as I did. There's no plans for further continuation, but I might.