Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.28 KB

File metadata and controls

44 lines (33 loc) · 1.28 KB

DeadBasic.BA

Made With Python License: MIT

DeadBasic is a programming language built for fun, demos, and learning.
It’s lightweight, indentation-based, and runs either interactively or from .ba script files.


✨ Features

  • Typed variables: int, long, double, str
  • Built-in commands:
    • printtext — print variables or text
    • showvars — list current variables
    • openfile — run another .ba file
    • add — add two numbers
  • Flow control:
    • if / else / endif — conditional blocks
    • while / endwhile — looping blocks
  • Indentation-based: block lines must start with one TAB or four spaces
  • Cross-platform: runs on Windows, Linux, macOS (with Python 3 or as a compiled binary)

📦 Installation

Clone the repository:

git clone https://github.com/TheRamDev/DeadBasic-coding-language.git

Run it via

Python deadbasic.py (Filename) 

OR

Python deadbasic.py

Controbutions are more then welcome. If you add commands or make some bug fixes send a PR. Ill integrate PR's when i see them.