Make IO a static class instead of a singleton.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
{
|
||||
var a = "first"
|
||||
io.write(a) // expect: first
|
||||
IO.write(a) // expect: first
|
||||
}
|
||||
|
||||
{
|
||||
var a = "second"
|
||||
io.write(a) // expect: second
|
||||
IO.write(a) // expect: second
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user