Update all new Tasks
This commit is contained in:
parent
00a190b0a6
commit
91df62d461
5697 changed files with 93386 additions and 804 deletions
18
Task/File-input-output/GML/file-input-output.gml
Normal file
18
Task/File-input-output/GML/file-input-output.gml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
var file, str;
|
||||
file = file_text_open_read("input.txt");
|
||||
str = "";
|
||||
while (!file_text_eof(file))
|
||||
{
|
||||
str += file_text_read_string(file);
|
||||
if (!file_text_eof(file))
|
||||
{
|
||||
str += "
|
||||
"; //It is important to note that a linebreak is actually inserted here rather than a character code of some kind
|
||||
file_text_readln(file);
|
||||
}
|
||||
}
|
||||
file_text_close(file);
|
||||
|
||||
file = file_text_open_write("output.txt");
|
||||
file_text_write_string(file,str);
|
||||
file_text_close(file);
|
||||
Loading…
Add table
Add a link
Reference in a new issue