[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua minus null (-0)
- From: Patrick Rapin <toupie300@...>
- Date: Thu, 9 Jun 2011 17:21:41 +0200
Adding a little more confusion, I noticed that MSVCRT.DLL, the Windows
"system" C runtime library, never prints "-0".
This is Lua behavior when linked with MSVCRT.DLL:
> print(-0)
0
> print("Oh"..-0)
Oh0
But with the current runtime MSVCR100.DLL (Visual Studio 2010) at
least, the behavior is the same as with GLIBC:
> print(-0)
-0
> print("Oh"..-0)
Oh-0
>
- References:
- Re: Lua minus null (-0), Dirk Laurie
- Re: Lua minus null (-0), Henk Boom
- Re: Lua minus null (-0), Dirk Laurie
- Re: Lua minus null (-0), Everett L Williams II
- Re: Lua minus null (-0), Dirk Laurie
- Re: Lua minus null (-0), David Kastrup
- Re: Lua minus null (-0), Dirk Laurie
- Re: Lua minus null (-0), David Kastrup
- Re: Lua minus null (-0), Dirk Laurie
- Re: Lua minus null (-0), David Kastrup
- Re: Lua minus null (-0), Roberto Ierusalimschy
- Re: Lua minus null (-0), David Kastrup