Skip to content

Commit d200faa

Browse files
committed
Build Joe7M's changes.
1 parent 515b555 commit d200faa

190 files changed

Lines changed: 3349 additions & 3149 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pages/file.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ <h1>File</h1>
9393
<li><a href="/reference/609.html">LOF</a></li>
9494
<li><a href="/reference/593.html">MKDIR</a></li>
9595
<li><a href="/reference/594.html">OPEN</a></li>
96+
<li><a href="/reference/601.html">READ</a></li>
9697
<li><a href="/reference/595.html">RENAME</a></li>
9798
<li><a href="/reference/596.html">RMDIR</a></li>
9899
<li><a href="/reference/597.html">SEEK</a></li>

pages/reference.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ <h1 id="language-reference">Language reference</h1>
382382

383383

384384

385+
385386

386387

387388
<a title="Returns the absolute value of x." href="/reference/704.html">ABS</a>&nbsp;
@@ -592,6 +593,7 @@ <h1 id="language-reference">Language reference</h1>
592593
<a title="The sign of point Q from line segment A->B." href="/reference/746.html">PTSIGN</a>&nbsp;
593594
<a title="Degrees to radians." href="/reference/747.html">RAD</a>&nbsp;
594595
<a title="Seeds the random number generator." href="/reference/810.html">RANDOMIZE</a>&nbsp;
596+
<a title="Read variables from a binary file." href="/reference/601.html">READ</a>&nbsp;
595597
<a title="Assigns values in DATA items to specified variables." href="/reference/546.html">READ</a>&nbsp;
596598
<a title="Draws a rectangular parallelogram." href="/reference/622.html">RECT</a>&nbsp;
597599
<a title="Same as DIM only the contents of x are preserved." href="/reference/547.html">REDIM</a>&nbsp;

reference/1015.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ <h2 id="examples">Examples</h2>
405405
</div>
406406
</div>
407407
<div class="pagefooter">
408-
This page was last edited on Sat, 9 Sep 2023 22:31:16 +0200
408+
This page was last edited on Tue, 12 Sep 2023 19:20:08 +0930
409409
|
410410
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
411411
processed with

reference/1422.html

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,18 @@ <h1>USING</h1>
7373
<a href="/pages/language.html">Language</a>
7474
</p>
7575
</div>
76-
<p>See PRINT, SPRINT</p>
76+
<p>PRINT USING uses the FORMAT function to display numbers and strings.</p>
77+
<p>See PRINT for more information. USG and USING are equivalent.</p>
78+
<h3 id="example">Example</h3>
79+
<div class="sourceCode" id="cb1"><pre class="sourceCode smallbasic"><code class="sourceCode smallbasic"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true"></a>a = <span class="dv">1000</span></span>
80+
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true"></a>b = <span class="dv">2000</span></span>
81+
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true"></a><span class="kw">PRINT</span> USING <span class="st">&quot;#,###.##&quot;</span>; a </span>
82+
<span id="cb1-4"><a href="#cb1-4" aria-hidden="true"></a><span class="kw">PRINT</span> USING <span class="st">&quot;#,###.## &quot;</span>; a; b <span class="co">&#39; &lt;- Format is applied to all variables </span></span>
83+
<span id="cb1-5"><a href="#cb1-5" aria-hidden="true"></a><span class="kw">PRINT</span> USING <span class="st">&quot;a = #####.00 b = #####&quot;</span>; a; b <span class="co">&#39; &lt;- One formated string with placeholders for two variables</span></span>
84+
<span id="cb1-6"><a href="#cb1-6" aria-hidden="true"></a></span>
85+
<span id="cb1-7"><a href="#cb1-7" aria-hidden="true"></a><span class="co">&#39; Output: 1,000.</span></span>
86+
<span id="cb1-8"><a href="#cb1-8" aria-hidden="true"></a><span class="co">&#39; Output: 1,000. 2,000. </span></span>
87+
<span id="cb1-9"><a href="#cb1-9" aria-hidden="true"></a><span class="co">&#39; Output: a = 1000.00 b = 2000 </span></span></code></pre></div>
7788
<div class="lavenderBox">
7889
<div class="header">Code samples using USING</div>
7990
<div class="linklist">
@@ -197,7 +208,7 @@ <h1>USING</h1>
197208
</div>
198209
</div>
199210
<div class="pagefooter">
200-
This page was last edited on Sat, 17 Mar 2018 11:54:15 +1000
211+
This page was last edited on Tue, 12 Sep 2023 17:11:22 +0200
201212
|
202213
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
203214
processed with

reference/1423.html

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,18 @@ <h1>USG</h1>
7373
<a href="/pages/language.html">Language</a>
7474
</p>
7575
</div>
76-
<p>Synonym for USING</p>
76+
<p>PRINT USG uses the FORMAT function to display numbers and strings.</p>
77+
<p>See PRINT for more information. USG and USING are equivalent.</p>
78+
<h3 id="example">Example</h3>
79+
<div class="sourceCode" id="cb1"><pre class="sourceCode smallbasic"><code class="sourceCode smallbasic"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true"></a>a = <span class="dv">1000</span></span>
80+
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true"></a>b = <span class="dv">2000</span></span>
81+
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true"></a><span class="kw">PRINT</span> <span class="kw">USG</span> <span class="st">&quot;#,###.##&quot;</span>; a </span>
82+
<span id="cb1-4"><a href="#cb1-4" aria-hidden="true"></a><span class="kw">PRINT</span> <span class="kw">USG</span> <span class="st">&quot;#,###.## &quot;</span>; a; b <span class="co">&#39; &lt;- Format is applied to all variables </span></span>
83+
<span id="cb1-5"><a href="#cb1-5" aria-hidden="true"></a><span class="kw">PRINT</span> <span class="kw">USG</span> <span class="st">&quot;a = #####.00 b = #####&quot;</span>; a; b <span class="co">&#39; &lt;- One formated string with placeholders for two variables</span></span>
84+
<span id="cb1-6"><a href="#cb1-6" aria-hidden="true"></a></span>
85+
<span id="cb1-7"><a href="#cb1-7" aria-hidden="true"></a><span class="co">&#39; Output: 1,000.</span></span>
86+
<span id="cb1-8"><a href="#cb1-8" aria-hidden="true"></a><span class="co">&#39; Output: 1,000. 2,000. </span></span>
87+
<span id="cb1-9"><a href="#cb1-9" aria-hidden="true"></a><span class="co">&#39; Output: a = 1000.00 b = 2000 </span></span></code></pre></div>
7788
<div class="lavenderBox">
7889
<div class="header">Code samples using USG</div>
7990
<div class="linklist">
@@ -169,7 +180,7 @@ <h1>USG</h1>
169180
</div>
170181
</div>
171182
<div class="pagefooter">
172-
This page was last edited on Sat, 17 Mar 2018 11:54:15 +1000
183+
This page was last edited on Tue, 12 Sep 2023 17:11:46 +0200
173184
|
174185
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
175186
processed with

reference/1428.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ <h1>BG</h1>
7575
</div>
7676
<p>Play sound in the background. BG prevents the program from blocking while the sound plays.</p>
7777
<p>See SOUND.</p>
78-
<div class="sourceCode" id="cb1"><pre class="sourceCode smallbasic"><code class="sourceCode smallbasic"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true"></a><span class="fu">SOUND</span> <span class="dv">1000</span>, <span class="dv">1000</span> <span class="kw">BG</span></span></code></pre></div>
78+
<h3 id="example">Example</h3>
79+
<div class="sourceCode" id="cb1"><pre class="sourceCode smallbasic"><code class="sourceCode smallbasic"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true"></a><span class="fu">SOUND</span> <span class="dv">1000</span>, <span class="dv">1000</span> <span class="kw">BG</span></span>
80+
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true"></a><span class="kw">pause</span></span></code></pre></div>
7981
<div class="lavenderBox">
8082
<div class="header">Code samples using BG</div>
8183
<div class="linklist">
@@ -184,7 +186,7 @@ <h1>BG</h1>
184186
</div>
185187
</div>
186188
<div class="pagefooter">
187-
This page was last edited on Thu, 1 Dec 2022 22:28:51 +0100
189+
This page was last edited on Tue, 19 Sep 2023 14:33:48 +0200
188190
|
189191
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
190192
processed with

0 commit comments

Comments
 (0)