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 6a41eb3 commit 23b7c07Copy full SHA for 23b7c07
episodes/22-domains.md
@@ -520,7 +520,7 @@ We'll add the following to our code to write ASCII:
520
use IO;
521
var myFile = open("output.dat", iomode.cw); // open the file for writing
522
var myWritingChannel = myFile.writer(); // create a writing channel starting at file offset 0
523
-myWritingChannel.write(T); // write the array
+myWritingChannel.write(temp); // write the array
524
myWritingChannel.close(); // close the channel
525
```
526
0 commit comments