reorganizing repo

git-svn-id: svn://ultimatepp.org/upp/trunk@9206 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-11-22 11:23:48 +00:00
parent 4e01795d0a
commit b4aa36a3ec
3840 changed files with 0 additions and 1161578 deletions

View file

@ -1,42 +0,0 @@
#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
ASSERT(0);
// start of U++ String version
const String a = "AddFrame";
const String b = "AddFrameSize";
DUMP(a < b);
DUMP(a == b);
DUMP(a > b);
DUMP(a < "AddFrameSize");
DUMP(a == "AddFrameSize");
DUMP(a > "AddFrameSize");
String less = a < b ? "true" : "false";
String equal = a == b ? "true" : "false";
String greater = a > b ? "true" : "false";
// PromptOK(Format("%s-|<-|%s:-|%s&%s-|==-|%s:-|%s&%s-|>-|%s:-|%s", a, b, less, a, b, equal, a, b, greater));
// end of U++ String version
{
// start of std::string version
const std::string a = "AddFrame";
const std::string b = "AddFrameSize";
String less = a < b ? "true" : "false";
String equal = a == b ? "true" : "false";
String greater = a > b ? "true" : "false";
String au(a.c_str());
String bu(b.c_str());
// PromptOK(Format("%s-|<-|%s:-|%s&%s-|==-|%s:-|%s&%s-|>-|%s:-|%s", au, bu, less, au, bu, equal, au, bu, greater));
// end of std::string version
}
}