mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-17 22:07:20 +00:00
13 lines
188 B
Text
13 lines
188 B
Text
reality HelloWorld {
|
|
platforms: all
|
|
}
|
|
|
|
journey Greet(name) {
|
|
platform: all
|
|
notify "Hello, " + name + " from AeThex!"
|
|
}
|
|
|
|
journey Main() {
|
|
platform: all
|
|
Greet("World")
|
|
}
|