Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 395 Bytes

File metadata and controls

12 lines (12 loc) · 395 Bytes

luaTuts

an archive for my Lua tutorial files


💡 what's inside?

a bunch of files from pixuma's course on lua!

📝 code examples?

temperature_c = 100
temperature_f = 9/5 * temperature_c + 32
print("boiling point of water: " ..temperature_c)
print("in Fahrenheit: " ..temperature_f)