///////////////////////////////////////////////////////////////////////////// // Name: samples/console/console.cpp // Purpose: a sample console (as opposed to GUI) progam using wxWindows // Author: Vadim Zeitlin // Modified by: // Created: 04.10.99 // RCS-ID: $Id$ // Copyright: (c) 1999 Vadim Zeitlin // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// #include #include #include int main() { if ( !wxInitialize() ) { fprintf(stderr, "Failed to initialize the wxWindows library, aborting."); } wxString s("Hello, "); wxLogMessage(s + "world!"); wxUninitialize(); return 0; }