Left here for archival purposes.

User avatar
By MHz
#32731 when using --[[ ... --]] I got the message: stdin:1: nesting of [[ ... ]] is deprecated near [
What is wrong, how to code block comments now?

I use: NodeMCU 0.9.6 build 20150704 powered by Lua 5.1.4

Thank you for answering a newbie question
User avatar
By TerryE
#32737
Code: Select all[[   [[ ... ]]  ]]
is not recommended, but
Code: Select all[=[   [[ ... ]]  ]=]
is fine. Nothing to do with nodeMCU. This is standard Lua.