Lines Matching full:io
1418 (print or io.write)('done')
1423 a = b + c(print or io.write)('done')
1425 a = b + c; (print or io.write)('done')
1436 ;(print or io.write)('done')
6107 (<a href="#pdf-os.execute"><code>os.execute</code></a> and <a href="#pdf-io.close"><code>io.close</…
6120 (<a href="#pdf-io.open"><code>io.open</code></a>, <a href="#pdf-os.rename"><code>os.rename</code></…
7186 …df-string.format"><code>string.format</code></a> and <a href="#pdf-io.write"><code>io.write</code>…
9045 all operations are supplied by table <a name="pdf-io"><code>io</code></a>.
9047 the operation <a href="#pdf-io.open"><code>io.open</code></a> returns a file descriptor
9052 The table <code>io</code> also provides
9054 <a name="pdf-io.stdin"><code>io.stdin</code></a>, <a name="pdf-io.stdout"><code>io.stdout</code></a…
9072 <hr><h3><a name="pdf-io.close"><code>io.close ([file])</code></a></h3>
9083 <hr><h3><a name="pdf-io.flush"><code>io.flush ()</code></a></h3>
9087 Equivalent to <code>io.output():flush()</code>.
9093 <hr><h3><a name="pdf-io.input"><code>io.input ([file])</code></a></h3>
9113 <hr><h3><a name="pdf-io.lines"><code>io.lines ([filename ···])</code></a></h3>
9125 The call <code>io.lines()</code> (with no file name) is equivalent
9126 to <code>io.input():lines()</code>;
9139 <hr><h3><a name="pdf-io.open"><code>io.open (filename [, mode])</code></a></h3>
9168 <hr><h3><a name="pdf-io.output"><code>io.output ([file])</code></a></h3>
9172 Similar to <a href="#pdf-io.input"><code>io.input</code></a>, but operates over the default output …
9178 <hr><h3><a name="pdf-io.popen"><code>io.popen (prog [, mode])</code></a></h3>
9197 <hr><h3><a name="pdf-io.read"><code>io.read (···)</code></a></h3>
9201 Equivalent to <code>io.input():read(···)</code>.
9207 <hr><h3><a name="pdf-io.tmpfile"><code>io.tmpfile ()</code></a></h3>
9219 <hr><h3><a name="pdf-io.type"><code>io.type (obj)</code></a></h3>
9232 <hr><h3><a name="pdf-io.write"><code>io.write (···)</code></a></h3>
9236 Equivalent to <code>io.output():write(···)</code>.
9253 When closing a file handle created with <a href="#pdf-io.popen"><code>io.popen</code></a>,
9287 Unlike <a href="#pdf-io.lines"><code>io.lines</code></a>, this function does not close the file
9402 you explicitly <code>flush</code> the file (see <a href="#pdf-io.flush"><code>io.flush</code></a>).
9698 you may prefer to use <a href="#pdf-io.tmpfile"><code>io.tmpfile</code></a>,