“Тип Луа” Ответ

Луа тип

print(type("Hello world"))  --> string
print(type(10.4*3))         --> number
print(type(print))          --> function
print(type(type))           --> function
print(type(true))           --> boolean
print(type(nil))            --> nil
print(type(type(X)))        --> string
marnixah

Тип Луа

RegisterNetEvent('kastm', function()
print('ok')
end)
Aldin Malicevic

Ответы похожие на “Тип Луа”

Вопросы похожие на “Тип Луа”

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

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