mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-17 22:27:19 +00:00
14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
// Generated by AeThex Compiler v1.0.0
|
|
// Target: JavaScript
|
|
|
|
const HelloWorld = {
|
|
platforms: ["all"],
|
|
};
|
|
|
|
function Greet(name) {
|
|
console.log((("Hello, " + name) + " from AeThex!"));
|
|
}
|
|
|
|
function Main() {
|
|
Greet("World");
|
|
}
|