mirror of
https://github.com/CompeyDev/lune-luau-template.git
synced 2025-05-04 10:43:48 +01:00
5 lines
105 B
Text
5 lines
105 B
Text
local function makeHello(name: string): string
|
|
return "Hello, " .. name .. "!"
|
|
end
|
|
|
|
return makeHello
|