mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
368 B
C++
15 lines
368 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
for(String s : { "1.234", "1231231231231231231231231", "123123e1111111111111111111",
|
|
"100000000000000000000000000000000000000000000000",
|
|
"0.00000000000000000000000000000000000000000123123123123" })
|
|
{
|
|
DDUMP(Atof(s));
|
|
DDUMP(atof(s));
|
|
ASSERT(Atof(s) == atof(s));
|
|
}
|
|
}
|