.tutorial

git-svn-id: svn://ultimatepp.org/upp/trunk@8656 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-07-09 12:41:56 +00:00
parent d8b65fbed3
commit 7ff39e35f0
2 changed files with 9 additions and 0 deletions

View file

@ -17,4 +17,9 @@ CONSOLE_APP_MAIN
Value v = x;
e = v;
DUMP(IsNull(e));
int a = Null;
int b = 123;
int c = 1;
DUMP(Nvl(a, b, c));
}

4
tutorial/Core07/init Normal file
View file

@ -0,0 +1,4 @@
#ifndef _Core07_icpp_init_stub
#define _Core07_icpp_init_stub
#include "Core/init"
#endif