Lua Commenting

[Solved] Lua Commenting | Shell - Code Explorer | yomemimo.com
Question : block commenting lua

Answered by : motionless-marten-2g3rykuy3464

--[[ The comment starts like this	and ends like this --]]

Source : | Last Update : Sat, 11 Jul 20

Question : Lua how to comment

Answered by : ed-lk2e7o8gzu3h

-- One line comment
--[[ Multiple line comment --]]

Source : | Last Update : Thu, 10 Dec 20

Question : hwo do you comment out in lua

Answered by : colorful-chimpanzee-cscbdcxsw70z

LUA COMMENTING
-- One line comment
--[[ Multiple line comment --]] -- Your comment here

Source : | Last Update : Sat, 03 Jul 21

Question : lua comments

Answered by : anderium

-- print("An inline comment starts with --")
--[=====[ Multiline comments are enclosed in --[[double square brackets]] and can be nested by placing = signs between the brackets
]=====]
---[[
print("Quickly toggle code block comments with a third - at the start")
--]]

Source : https://www.lua.org/pil/1.3.html | Last Update : Sat, 15 Aug 20

Question : lua commenting

Answered by : brandon

-- Your comment here

Source : | Last Update : Fri, 10 Apr 20

Question : lua comments

Answered by : orion

-- Inline Comments
--[[ text ]]-- Block Comments

Source : | Last Update : Thu, 26 Mar 20

Question : lua comment

Answered by : excited-eel-etogyfjqt4sy

{"tags":[{"tag":"textarea","content":"-- this is a comment","code_language":"whatever"}]}

Source : https://www.tutorialspoint.com/comments-in-lua-programming | Last Update : Fri, 14 Apr 23

Answers related to lua commenting

Code Explorer Popular Question For Shell