All checks were successful
akbasic CI Build / cmake_build (push) Successful in 3m34s
akbasic CI Build / coverage (push) Successful in 4m4s
akbasic CI Build / sanitizers (push) Successful in 6m59s
akbasic CI Build / akgl_build (push) Successful in 7m57s
akbasic CI Build / mutation_test (push) Successful in 23m28s
Move every program and expectation out of tests/reference and register the unified tests/language corpus as local cases. Remove the old immutable-corpus protections from build, maintenance, and documentation paths. Co-authored-by: andrew <andrew@aklabs.net>
11 lines
290 B
QBasic
11 lines
290 B
QBasic
10 FOR I# = 1 TO 4
|
|
15 PRINT "OUTER : I# IS " + I#
|
|
20 FOR J# = 2 TO 3
|
|
23 PRINT "INNER : I# IS " + I#
|
|
25 PRINT "INNER : J# IS " + J#
|
|
30 PRINT "INNER : I# * J# IS " + (I# * J#)
|
|
40 NEXT J#
|
|
50 NEXT I#
|
|
60 PRINT "DONE"
|
|
70 QUIT
|