All 41 .bas/.txt pairs copied byte for byte from basicinterpreter@d76162c into tests/reference/, plus the Commodore font into assets/fonts/ -- the two things that tied the build to deps/basicinterpret. Both were verified cmp-identical to the submodule copies. This reverses a decision that was deliberate and correct at the time: the corpus was driven in place because copying a submodule's corpus guarantees drift. Overruled on purpose -- the Go dependency is being deprecated, and a build that cannot run its acceptance suite without cloning the implementation it replaced is not finished. tests/reference/README.md records what the drift now costs and that those expectations are never edited. Checked rather than assumed: both configurations configure, build and pass from scratch with deps/basicinterpret moved out of the tree entirely. The submodule is kept as the behavioural spec, which is a real use. The font came with an open licence question; assets/fonts/PROVENANCE.md states it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
13 lines
601 B
QBasic
13 lines
601 B
QBasic
10 REM This shows the waitingForCommand utility in the BasicEnvironment
|
|
11 REM We have a FOR loop here with a condition where the loop should
|
|
12 REM not execute at all. But because the checking of the conditional is
|
|
13 REM delayed until the bottom of the loop, we run the risk of the
|
|
14 REM runtime executing every line between FOR ... NEXT even though it
|
|
15 REM shouldn't. waitingForCommand prevents this from occurring
|
|
20 FOR I# = 1 TO 1
|
|
30 PRINT "waitingForCommand FAILS if this is seen"
|
|
40 NEXT I#
|
|
50 FOR I# = 1 TO 2
|
|
60 PRINT "waitingForCommand PASS if this is seen"
|
|
70 NEXT I#
|
|
80 QUIT |