lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Wed, Aug 12, 2020 at 9:20 PM Egor Skriptunoff <egor.skriptunoff@gmail.com> wrote:

rem=(#''--[=[
);"""

COMMENT

"""#]=])

print"Hello from both Python and Lua"


That print call will only work on Python 2.x, which has been EOL since January. To be compatible with Python 3 (where print is a builtin function rather than a keyword statement), you need parentheses around the argument.