1
2
3
4
5
local function hello (greeting: string): string
  return greeting .. " world!"
end
 
hello("reflections on 2020-2021")
Enter to Rename, Shift+Enter to Preview

1
2
3
4
5
local function hello(greeting)
   return greeting .. " world!"
end
 
hello("reflections on 2020-2021")
Enter to Rename, Shift+Enter to Preview