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
233 B
QBasic
11 lines
233 B
QBasic
10 A# = 1
|
|
20 IF A# == 1 THEN GOTO 30 ELSE GOTO 40
|
|
30 PRINT "A# IS 1"
|
|
35 GOTO 50
|
|
45 PRINT "A# IS NOT 1"
|
|
50 IF A# == 2 THEN GOTO 60 ELSE GOTO 80
|
|
60 PRINT "A# IS 2"
|
|
65 PRINT A#
|
|
70 GOTO 90
|
|
80 PRINT "A# IS NOT 2"
|
|
90 PRINT "DONE" |