lune-org/lune

Outputs aren't being flushed in the correct order

Closed this issue · 0 comments

Title essentially says it all, so here are some simple repro cases.

local stdio = require("@lune/stdio")

stdio.write("First")
stdio.ewrite("Second")

SecondFirst

local stdio = require("@lune/stdio")

stdio.write("First")
print("Second")

Second
First