Created
September 28, 2022 17:38
-
-
Save gcasa/22de1d4e9103928720553938c5750a3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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