1lann / Mimic

A fully featured emulator for the Minecraft mod ComputerCraft that runs straight in your browser.
gravlann.github.io
MIT License
45 stars 20 forks source link

fs.open can create files with spaces? #40

Closed dirthsj closed 10 years ago

dirthsj commented 10 years ago

to dupe: run this code

local text = "an example of a file"
local file = fs.open(text, "w")
file.writeLine("test")
file.close()
1lann commented 10 years ago

You can do this in ComputerCraft as well (Last time I tried)