We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a9660 commit a86adc0Copy full SHA for a86adc0
1 file changed
Main/Main.ezcode
@@ -351,6 +351,17 @@ class expressions {
351
}
352
353
354
+class file {
355
+ method read : @str:path => @str {
356
+ return runexec io-package.dll.io_package.IO.FileRead ~> {path}
357
+ }
358
+ method write : @str:path, @str:text => @str {
359
+ return runexec io-package.dll.io_package.IO.FileWrite ~> {path}, {text}
360
361
+ method create : @str:path => @str {
362
+ return runexec io-package.dll.io_package.IO.FileCreate ~> {path}
363
364
+}
365
global nocol method print : ! @str:__text {
366
runexec EZCodeLanguage.EZHelp.Print ~> {__text}
367
0 commit comments