File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -486,22 +486,22 @@ pArgs - additional arguments]]></Description>
486486
487487 //Labels that allow for IO redirection
488488 //Read Character - we don't care about reading
489- rchr(c) quit
489+ rchr(c) quit
490490 //Read a string - we don't care about reading
491491rstr(sz,to) quit
492492 //Write a character - call the output label
493- wchr(s) do output($char(s)) quit
493+ wchr(s) do output($char(s)) quit
494494 //Write a form feed - call the output label
495- wff() do output($char(12)) quit
495+ wff() do output($char(12)) quit
496496 //Write a newline - call the output label
497- wnl() do output($char(13,10)) quit
497+ wnl() do output($char(13,10)) quit
498498 //Write a string - call the output label
499- wstr(s) do output(s) quit
499+ wstr(s) do output(s) quit
500500 //Write a tab - call the output label
501- wtab(s) do output($char(9)) quit
501+ wtab(s) do output($char(9)) quit
502502 //Output label - this is where you would handle what you actually want to do.
503503 // in our case, we want to write to str
504- output(s) set str=str_s quit
504+ output(s) set str=str_s quit
505505]]> </Implementation >
506506</Method >
507507</Class >
You can’t perform that action at this time.
0 commit comments