Veyra: The Next-Gen
Open Programming Language

Build, prototype, and deploy with blazing speed. Veyra is designed for modern web, AI, and systems programming. Contributions are open. Try it live below!
Live Veyra Playground
Write and run Veyra code instantly in your browser. (Simulated for demo)
Output will appear here...
Getting Started with Veyra

1. Install Veyra

Install the official Veyra package from PyPI:
Bash
pip install veyra

2. Create Your First Program

Write your first Veyra file hello.vy:
fn main() {
    println("Hello, Veyra World!");
}

3. Run Your Program

Execute your code from the terminal:
Bash
veyra run hello.vy

4. Explore Features

  • Modern syntax: let, fn, match, ranges, and more
  • Web server & HTML generation: create_page, web_serve
  • Package manager: veyra pm install ...
  • AI/ML ready: matrix operations, math, and more
  • Cross-platform: Linux, Windows, macOS

5. Project Structure

A typical Veyra project:
Tree
src/veyra/    # Language core
  examples/    # Example programs
  web/         # Website files
  setup.py     # Packaging
  README.md    # Docs