mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
17 lines
270 B
C++
17 lines
270 B
C++
#include "Console.h"
|
|
#include <string.h>
|
|
|
|
namespace Retro
|
|
{
|
|
void InitConsole();
|
|
}
|
|
|
|
int main()
|
|
{
|
|
Retro::InitConsole();
|
|
const char *s = "Hello, world.\n";
|
|
Retro::Console::currentInstance->write(s, strlen(s));
|
|
Retro::Console::currentInstance->ReadLine();
|
|
return 0;
|
|
}
|