faster bf processing...

This commit is contained in:
Cameron Taylor 2024-03-07 03:57:16 -05:00 committed by GitHub
parent f94c3dec57
commit 427e4810ad
1 changed files with 6 additions and 1 deletions

View File

@ -52,7 +52,12 @@ class AnsiTrace
public static function traceBF()
{
#if sys
if (colorSupported) Sys.println(ansiBF.join("\n"));
if (colorSupported)
{
for (line in ansiBF)
Sys.stdout().writeString(line + "\n");
Sys.stdout().flush();
}
#end
}