8000 GitHub - andresdanielmtz/autum-lang: The Autum Programming Language. Not meant to be taken seriously.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

The Autum Programming Language. Not meant to be taken seriously.

Notifications You must be signed in to change notification settings

andresdanielmtz/autum-lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Autum Programming Language

A simple, easy to use, and powerful programming language.

(Not meant to be taken seriously)

Features

  • Variables
  • Print statements
  • Comments
  • Basic If conditionals
    • Evaluation between two variables
    • Evaluation between a variable and a value

How to use

  1. Clone the repository
  2. Run python main.py <file> with an autum file as its argument, or run the main file and pass the program text from standard input.

Example

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"

Output

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.

About

The Autum Programming Language. Not meant to be taken seriously.

Resources

Stars

Watchers

Forks

392C

Releases

No releases published

Packages

No packages published

Languages

0