To be more specific, I'm looking for a program or utility that will convert the line numbers in my qbasic programs into even increments. For example the utility would convert example 'a' to example 'b':
example 'a'
1 x = x + 1
4 for t = t to 5
10 print x;t
12 next t
13 goto 1
example 'b'
10 x = x + 1
20 for t = t to 5
30 print x;t
40 next t
50 goto 10
Thanks again,
Wraygun