Prometheus is a lightweight, statically-typed, interpreted prototype for the programming language written in Python. This repository contains the prototype version of the language, focusing on core implementation logic and syntax exploration.
Important
Disclaimer: This is a prototype repository. The code herein is intended for experimental use and proof-of-concept testing. It may contain incomplete features, bugs, or unoptimized logic that differs from the main production or stable branches.
- Static-ish Typing: Explicitly declare
int,double,str. - C-Style Syntax: Familiar curly-brace blocks and semicolon statement termination.
- Functions: Support for typed return values and parameter passing.
- Control Flow:
if/elif/elselogic,whileloops, andforloops.
Run by doing python prometheus.py [filename]