Test program in line that should be copied and pasted in Python shell after executing OLPyBASIC.
https://my.numworks.com/python/mobluse/olpybasic
https://github.com/mobluse/olpybasic
print("Execute OLPyBASIC first.") print("Paste 4th line in Python shell.") P=print P('10 print("OLPyBASIC")');P('20 print("uPython")');P('30 x=30');P('40 print(x)');P('45 gosub(90)');P('50 x+=1');P('60 if x<=40:goto(40)');P('70 stop()');P('90 print(11*x)');P('99 ret()')