We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a9660 commit 333e944Copy full SHA for 333e944
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 EZCodeLanguage.EZHelp.FileRead ~> {path}
357
+ }
358
+ method write : @str:path, @str:text => @str {
359
+ return runexec EZCodeLanguage.EZHelp.FileWrite ~> {path}, {text}
360
361
+ method create : @str:path => @str {
362
+ return runexec EZCodeLanguage.EZHelp.FileCreate ~> {path}
363
364
+}
365
global nocol method print : ! @str:__text {
366
runexec EZCodeLanguage.EZHelp.Print ~> {__text}
367
0 commit comments