RosettaCodeData/Task/Create-a-file/Wren/create-a-file.wren

8 lines
162 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import "io" for File
// file is closed automatically after creation
File.create("output.txt") {}
// check size
System.print("%(File.size("output.txt")) bytes")