mirror of
https://github.com/CompeyDev/lune-luau-template.git
synced 2024-12-12 12:50:41 +00:00
6 lines
105 B
Text
6 lines
105 B
Text
|
local function makeHello(name: string): string
|
||
|
return "Hello, " .. name .. "!"
|
||
|
end
|
||
|
|
||
|
return makeHello
|