Show HN: Oratio โ€“ Natural language programming that expands itself with AI
github.comยท4hยท
Discuss: Hacker News
Flag this post

๐ŸŽฏ What is ORATIO?

ORATIO is the first programming language that truly understands your language.

No more syntax to learn. No more cryptic code. You speak, it works.

# This is ORATIO code
Load sales.csv.
Filter rows where amount > 1000.
Calculate the average.
Create a bar chart.
Print "Analysis completed\!"

It works. Really.


๐Ÿš€ Quick Start

Installation

pip install oratio

Your First Program

# Create a file
echo "Print 'Hello World\!'" > hello.ora

# Run it
oratio run hello.ora

Output:

๐Ÿ“„ Hello World\!


โœจ Why ORATIO?

Before (Python)

import pandas as pd
df = pd.read_csv('sales.csv')
filtered = df[df['amount'] > 1000]
mean = filtered['amount'].mean()
print(f"Average: {mean}")

โŒ Compโ€ฆ

Similar Posts

Loading similar posts...