Coming Soon

We're working hard to bring you a modern, cloud-native programming language designed for building scalable, distributed systems with elegant syntax and robust safety features.

0
Days
0
Hours
0
Minutes
0
Seconds
countdown.ath
1// Aether is coming soon!
2service Countdown {
3  @get("/time-remaining")
4  endpoint getTimeRemaining(): Countdown {
5    return {
6      days: 0,
7      hours: 0,
8      minutes: 0,
9      seconds: 0
10    };
11  }
12}
13
14type Countdown = {
15  days: Number;
16  hours: Number;
17  minutes: Number;
18  seconds: Number;
19}