Aether Quickstart
Aether Quickstart
Get started with the Aether programming language

Aether Programming Language
Modern, cloud-native programming for distributed systems
Key Features
Cloud-First
Native cloud APIs and service discovery
Elegant Syntax
Clean, minimal syntax inspired by modern languages
Security-Focused
Language-level sandboxing and capabilities
Modern Concurrency
Async/await, actors, and reactive streams
Hello World Example
Create a new file called hello.ath
with:
service HelloService {
@get("/hello")
endpoint greet(name: String): String {
return "Hello, ${name} from Aether!";
}
}
Run the service with:
aeth run hello.ath
Then visit http://localhost:8080/hello?name=World