Queue/Definition: Difference between revisions

Content added Content deleted
m (BBC BASIC moved to the BASIC section.)
Line 1,908: Line 1,908:
</syntaxhighlight>
</syntaxhighlight>


=={{header|BBC BASIC}}==
=={{header|BASIC}}==
==={{header|BBC BASIC}}===
{{works with|BBC BASIC for Windows}}
{{works with|BBC BASIC for Windows}}
<syntaxhighlight lang="bbcbasic"> FIFOSIZE = 1000
<syntaxhighlight lang="bbcbasic"> FIFOSIZE = 1000
Line 6,540: Line 6,541:
q.empty(); //-->False
q.empty(); //-->False
q.pop();q.pop();q.pop() //-->IndexError thrown</syntaxhighlight>
q.pop();q.pop();q.pop() //-->IndexError thrown</syntaxhighlight>


{{omit from|PL/0}}