Home - Pranav-Lejith/Orion GitHub Wiki
Welcome to the Orion Interpreter Wiki
Orion Interpreter v7.1.9 - The Celestial Hunter of Programming Languages
Created by Pranav Lejith (Amphibiar)
What is Orion?
Orion is a powerful, feature-rich custom programming language interpreter built in Python. It combines Python-like syntax with extensive built-in functionality, perfect for both beginners and advanced users.
Quick Start
# Clone and install
git clone https://github.com/Pranav-Lejith/Orion.git
cd Orion
install.bat
# Run interactive shell
orion shell
# Run a program
orion run program.or
Example Program
display "Welcome to Orion Calculator"
get op "Enter operation (+, -, *, /): "
get a "Enter first number: "
get b "Enter second number: "
a = int(a)
b = int(b)
if op == "+":
display a + b
elif op == "-":
display a - b
elif op == "*":
display a * b
elif op == "/":
if b != 0:
display a / b
else:
display "Cannot divide by zero"
else:
display "Unknown operation"
display "Thank you!"
displayColoredText("CODE EXECUTED SUCCESSFULLY", "green")
Key Features
- ✅ Python-like Syntax - Familiar and intuitive
- ✅ Interactive Shell - REPL environment
- ✅ 100+ Built-in Functions - Math, strings, lists, and more
- ✅ Object-Oriented Programming - Classes and inheritance
- ✅ Colored Output - Beautiful terminal display
- ✅ Cross-Platform - Windows, Linux, macOS
Wiki Pages
- Installation Guide - Setup instructions
- Language Reference - Syntax and features
- Built-in Functions - Complete function list
- Examples - Sample programs
- Troubleshooting - Common issues
Community
"The celestial hunter of the night sky" - A programming language that guides you through the vast universe of code.