Answers for "Lua string"

Lua
5

lua functions

function myFunction()	-- Start with 'function', give it a name
  -- Do something amazing...
end		-- Finish with 'end'

myFunction()	-- Call the function later in the code
Posted by: Guest on December-03-2020
7

lua function

--// Basic Function

function PrintingText()
print("My text here")
end

PrintingText()
Posted by: Guest on April-03-2020
0

Lua string

-- Strings are immutable. Immutable simply means unmodifiable or unchangeable.
a = 'this is a string'
Posted by: Guest on December-03-2020
-1

lua text script

print("Lua lua!")
wait(1)
print("AYYY!")
wait(1)
print("AYYY!")
wait(1)
print("Lua lua..")
end
end)































print("EEE")
Posted by: Guest on July-26-2020

Browse Popular Code Answers by Language