summaryrefslogblamecommitdiff
path: root/apps/examples/bastest/tests/test45.bas
blob: cea534dda58df5cf2b43bc923c48436652ddf981 (plain) (tree)
1
2
3
4
5
6
7
8
9







                            
 
10 mid$(a$,6,4) = "ABCD"
20 print a$
30 a$="0123456789"
40 mid$(a$,6,4) = "ABCD"
50 print a$
60 a$="0123456789"
70 let mid$(a$,6,4) = "ABCD"
80 print a$