.reference

git-svn-id: svn://ultimatepp.org/upp/trunk@9451 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-02-05 11:59:52 +00:00
parent 7bdd64ab40
commit fa14bcff72

View file

@ -33,6 +33,10 @@ CONSOLE_APP_MAIN
DUMP(Format("%n", 1234567.89));
DUMP(Format("%,n", 1234567.89));
DUMP(Format("%+n", 1234567.89));
DUMP(Format("%2,n", 123.456));
DUMP(Format("%2,n", 123));
DUMP(Format("%2!,n", 123));
DUMP(Format("%ne", 1234567.89));
DUMP(Format("%nf", 1234567.89e30));
DUMP(Format("%nl", 1234567.89));