
Cloud Native with Confidence
Aether is a modern, cloud-native programming language designed for building scalable, distributed systems with elegant syntax and robust safety features.
Cloud NativeType SafeDistributedORM IncludedFast Compile
src/HelloService.ath
1service HelloService {
2 @get("/hello")
3 endpoint greet(): String {
4 return "Hello from Aether!";
5 }
6
7 @get("/health")
8 endpoint healthCheck(): String {
9 return "OK";
10 }
11
12 @get("/version")
13 endpoint version(): String {
14 return "Aether v1.1.0";
15 }
16}
Powered by Aether Compiler v1.1.0