kolibrios/contrib/sdk/samples/cpp_hello/hello.cpp
maxcodehack 903215408b Move C header for console loading to newlib/libc/include
git-svn-id: svn://kolibrios.org@8518 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-01-05 10:04:54 +00:00

22 lines
336 B
C++
Executable File

// for 'cout'
#include <iostream>
// for 'console.obj' functions
#include <sys/kos_LoadConsole.h>
using namespace std;
int main()
{
// load console.obj
load_console();
con_set_title("C++ Console.obj example");
cout << "Press any key...\n";
con_getch();
cout << "Hello, KolibriOS!\n";
con_set_title("Hello");
return 0;
}