Update Import

This commit is contained in:
vczh
2026-03-08 20:23:47 -07:00
parent 8a0b8e7362
commit 89cc3a6884

View File

@@ -31,7 +31,7 @@ Console
void Console::Write(const wchar_t* string, vint length) void Console::Write(const wchar_t* string, vint length)
{ {
std::wstring s(string, string + length); std::wstring s(string, string + length);
std::wcout << s << std::ends; std::wcout << s << std::flush;
} }
WString Console::Read() WString Console::Read()