Fixed TCP for Windows.
Some checks failed
Build & Release / Linux-AMD64-Build (push) Successful in 7m50s
Build & Release / Windows-AMD64-Build (push) Successful in 4m17s
Build & Release / Linux-AARCH64-Build (push) Failing after 28s

This commit is contained in:
2025-11-16 19:57:22 -08:00
parent d60d4c27ab
commit eb3ab732c6
2 changed files with 5 additions and 5 deletions

View File

@@ -105,13 +105,13 @@ int main()
if (!response.IsNum())
{
ehs::Console::Clear(); // Clear the console's buffer.
return main(); // Repeat process if given response is not a number.
ehs::Console::Clear(); // Clear the console's buffer.
return main(); // Repeat process if given response is not a number.
}
ehs::UInt_8 age = response.ToDecimal<ehs::UInt_8>(); // Converts the string number into a number based primitive.
ehs::Console::Write("Your age is " + ehs::Str_8::FromNum(age) + "."); // Write the console with the age converted back to string.
ehs::Console::Write_8("Your age is " + ehs::Str_8::FromNum(age) + "."); // Write the console with the age converted back to string.
ehs::Uninitialize();