diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-03 12:48:21 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-03 12:48:21 +0200 |
commit | 636b98e0ec8771c4377fd78e036da6acbec109db (patch) | |
tree | 0b030701037da657e74eab55ce32e3d915ad8b6f /main | |
parent | 3c0d80179c0f2053fb2b892ee9af47200cb5d539 (diff) |
Random commit to check something
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 41e2e29..349b682 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -5,7 +5,7 @@ int main(int /* argc */, char* /* argv */[]) {
auto* api_registry = deimos::InitializeGlobalApiRegistry();
auto* os_api = api_registry->Get<deimos::OsApi>();
- os_api->console->Write(deimos::OsConsoleType::kStdOut, "Hello\n", 6);
+ os_api->console->Write(deimos::OsConsoleType::kStdOut, "Hello, world!\n", 14);
return 0;
}
|