how to print hello in lua

print("Hello")

Explanation: - print: This is a function in Lua used to output text or values to the console. - "Hello": This is a string literal enclosed in double quotes, which represents the text to be printed.