lua-users home
lua-l archive

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


ashley wrote:
 >> Can someone confirm whether or not this is a bug
lhf wrote:
 >> To print \b (two-char string), you need to use
 >>     dostring("print('\\\\b')")

  Or use a "bracket" string to prevent the double parse:

     dostring([[print('\\b')]])

  Cheers,

  Dave