AeThex-OS/examples/hello.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