I’ve begun learning Lua.
To find the length of a string:
string.len("shark")
5
To find the cosine:
math.cos
To convert a lowercase string to uppercase:
string.upper("dad")
DAD
I’ve begun learning Lua.
To find the length of a string:
string.len("shark")
5
To find the cosine:
math.cos
To convert a lowercase string to uppercase:
string.upper("dad")
DAD