“Как печатать в Луа” Ответ

LUA PRINT

print("text here")

-- or

extra = "more text"

print("text here " .. extra)
RexNC

LUA PRINT

-- print "Hello, World!

print("Hello, World!")

-- or

x = "Hello, World!"
print(x)
Lazy Lizard

lua print Hi

print("Hi") --prints hi
Bloody Bat

Как печатать в Луа

print("text"..v) -- "" for strings, '..' to concencate, type name of variable to print variable
Obnoxious Owl

Как печатать в Луа

print("Hello world") -- prints a message into the console, which is called a string..

-- IF YOU WANTED TO USE A VARIABLED vv

local x = "Hello!" -- a variable has a value, for this case, a string.
print(x) -- We still print it in the console, it's that it's a nice, faster way of doing it.
-- Also helpful if you want to re-use code if it's used a lot in a program you make..
Opal

Ответы похожие на “Как печатать в Луа”

Вопросы похожие на “Как печатать в Луа”

Больше похожих ответов на “Как печатать в Луа” по Lua

Смотреть популярные ответы по языку

Смотреть другие языки программирования