100 doors: Difference between revisions

Content deleted Content added
Basicgames (talk | contribs)
Basicgames (talk | contribs)
Line 13,038: Line 13,038:
LET I = I + 1
LET I = I + 1
GOTO 10</syntaxhighlight>
GOTO 10</syntaxhighlight>

=={{header|Tiny Craft Basic}}==
<syntaxhighlight lang="basic">10 rem loop

20 let i = i + 1
30 print i * i, " open"

40 if i * i < 100 then 10

50 shell "pause"
60 end</syntaxhighlight>


=={{header|TypeScript}}==
=={{header|TypeScript}}==