An interesting question has come up about how HP Time-Share BASIC handles this code:
10 PRINT "HOW MANY STARS DO YOU WANT"; 20 INPUT N 30 FOR J = 1 TO N 40 PRINT "* "; 50 NEXT J 60 END ANSI/ECMA will print no asterisks if you enter zero at the input. MS will print one because it's bottom tested.
Does anyone have a way to run this under HP?