Skip to content

Instantly share code, notes, and snippets.

@gcasa
Created September 28, 2022 17:38
Show Gist options
  • Save gcasa/22de1d4e9103928720553938c5750a3c to your computer and use it in GitHub Desktop.
Save gcasa/22de1d4e9103928720553938c5750a3c to your computer and use it in GitHub Desktop.
-- Just a simple program to help me learn lua. :)
function test()
io.write("Hello World!\n")
io.write("What's you're name? ")
local name = io.read()
io.write("Hello " .. name .. "!\n")
end
-- Language: lua
-- Path: program.lua
test()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment