-
Posted by Kurec on Thu, 22 Jul 2010 22:45:55
The line
s = "from=world, to=Lua"causes the interpreter to returnto , Lua from, world,rather than what the book says it returns. To mend this, change
s = "from=world, to=Lua"tos = "from=world to=Lua". -
Posted by jnwhiteh on Fri, 23 Jul 2010 07:55:00
The line
s = "from=world, to=Lua"causes the interpreter to returnto , Lua from, world,rather than what the book says it returns. To mend this, change
s = "from=world, to=Lua"tos = "from=world to=Lua".I do not understand this bug report. The example is correct in the book. It's explained quite early on that examples written in the book use a comma to separate different values in a multi-value print statement rather than tab characters, which are difficult if not impossible to render readable in a printed document.