Metadata-Version: 2.4
Name: po-lang-engine
Version: 2.1.5
Summary: Po-Lang — A high-performance, Python-inspired programming language engine
Author: Po-Lang
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Po-Lang Engine

A high-performance, Python-inspired programming language with a bytecode VM.

## Install

```bash
pip install po-lang
```

## Usage

```bash
po run script.po
```

## Features

- Lexer, Parser, Compiler, Bytecode VM
- Standard library: `io`, `math`, `json`, `net`, `sys`
- HTTP server with routing (`net.listen`)
- Foreign Function Interface (FFI)

## HTTP Server Example

```po
use net

keep server = net.listen(8080)
server["route"]("GET", "/", fn(req) { return "<h1>Hello from Po-Lang!</h1>" })
server["start"]()
```

## Version

2.1.3 — Fixes: HTTP routing resolution, SO_REUSEADDR port reuse, proper HTTP header parsing.
