mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
14 lines
235 B
Lua
14 lines
235 B
Lua
-- Generated by AeThex Compiler v1.0.0
|
|
-- Target: Roblox (Lua)
|
|
|
|
local HelloWorld = {
|
|
platforms = {"all"},
|
|
}
|
|
|
|
local function Greet(name)
|
|
print((("Hello, " .. name) + " from AeThex!"))
|
|
end
|
|
|
|
local function Main()
|
|
Greet("World")
|
|
end
|