lua print number code example
Example 1: lua print
print "hello"
-- or
print("hello")
Example 2: Lua string
-- Strings are immutable. Immutable simply means unmodifiable or unchangeable.
a = 'this is a string'
print "hello"
-- or
print("hello")
-- Strings are immutable. Immutable simply means unmodifiable or unchangeable.
a = 'this is a string'