ultimatepp/tutorial/Core07/Core07.cpp
cxl 7ff39e35f0 .tutorial
git-svn-id: svn://ultimatepp.org/upp/trunk@8656 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-07-09 12:41:56 +00:00

25 lines
310 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
int x = Null;
int y = 120;
Date d = Null;
Date e = GetSysDate();
DUMP(IsNull(x));
DUMP(IsNull(y));
DUMP(IsNull(d));
DUMP(e > d);
Value v = x;
e = v;
DUMP(IsNull(e));
int a = Null;
int b = 123;
int c = 1;
DUMP(Nvl(a, b, c));
}