]> git.saurik.com Git - wxWidgets.git/blob - samples/console/console.cpp
e90e7b58589d2df22ce166ff870a44167fa11083
[wxWidgets.git] / samples / console / console.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/console/console.cpp
3 // Purpose: a sample console (as opposed to GUI) progam using wxWindows
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 04.10.99
7 // RCS-ID: $Id$
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include <stdio.h>
13
14 #include <wx/string.h>
15 #include <wx/app.h>
16
17 int main()
18 {
19 if ( !wxInitialize() )
20 {
21 fprintf(stderr, "Failed to initialize the wxWindows library, aborting.");
22 }
23
24 wxString s("Hello, ");
25
26 wxLogMessage(s + "world!");
27
28 wxUninitialize();
29
30 return 0;
31 }