[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (beta-rc6) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 6 Jul 2011 11:05:22 -0300
> x = "Foo\
> Bar"
>
> is now the same than
>
> x = "Foo\z
> Bar"
>
> and the same than
>
> x = [[
> Foo
> Bar]]
>
> right?
Wrong :) '\z' skips linebreaks, too. So,
x = "Foo\z
Bar"
is the same as
x = "FooBar"
A more realistic use is like this:
x = "\x7F\x45\x4C\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\z
\x02\x00\x03\x00\x01\x00\x00\x00\x30\xB9\x04\x08\x34\x00\x00\x00\z
\x60\xC5\x0A\x00\x00\x00\x00\x00\x34\x00\x20\x00\x08\x00\x28\x00\z
\x27\x00\x24\x00\x06\x00\x00\x00\x34\x00\x00\x00\x34\x80\x04\x08\z
\x34\x80\x04\x08\x00\x01\x00\x00\x00\x01\x00\x00\x05\x00\x00\x00\z
\x04\x00\x00\x00\x03\x00\x00\x00\x34\x01\x00\x00\x34\x81\x04\x08\z
\x34\x81\x04\x08\x13\x00\x00\x00\x13\x00\x00\x00\x04\x00\x00\x00\z
\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x04\x08\z
\x00\x80\x04\x08\x6C\x74\x03\x00\x6C\x74\x03\x00\x05\x00\x00\x00\z
\x00\x10\x00\x00\x01\x00\x00\x00\xE0\x7E\x03\x00\xE0\x0E\x08\x08"
-- Roberto