We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa605e7 commit b32e90eCopy full SHA for b32e90e
archive/w/wren/file-input-output.wren
@@ -0,0 +1,7 @@
1
+import "io" for File
2
+
3
+File.create("output.txt") {|f|
4
+ f.writeBytes("My brain has too many tabs open.")
5
+}
6
7
+System.print(File.read("output.txt"))
0 commit comments