lumiera_/src/tool/try.cpp

33 lines
430 B
C++
Raw Normal View History

/* try.cpp - for trying out some language features....
* scons will create the binary bin/try
*
*/
// 8/07 - how to control NOBUG??
// execute with NOBUG_LOG='ttt:TRACE' bin/try
#include <nobug.h>
#include <iostream>
#include <typeinfo>
2008-01-27 03:58:24 +01:00
using std::string;
using std::cout;
int
main (int argc, char* argv[])
{
NOBUG_INIT;
cout << "\ngulp\n";
2008-01-27 03:58:24 +01:00
return 0;
}