What are the restrictions for the use of numeric line numbers as related to the actual statements that can be written between two numeric line numbers? For example, If we write source as:
10000 ' A discrete line number in source
DMY1% = 1
DMY2% = 2
DMY3% = 3
DMY4% = 4
DMY5% = 5
DMY6% = 6
10005 PRINT DMY1%'semicolon' DMY2%'semicolon' DMY3%
That example has six 'lines' of source code between two discrete numeric line numbers in the source which are only five numeric digits apart.
At what point do we get into trouble relative to the number of statements in the source code between two discrete numeric line numbers?
Sure, I realize that we could write the above code as
DMY1% = 1'colon'DMY2% = 2:'colon'DMY3% = 3 ...
But at what point do we get in trouble between, for example, if we choose numeric line # 10000 then choose the next numeric line # to be, say 10001 in the example above? Or must we actually guarantee that we never have discrete line numbers in the souce which are less than the actuall number of 'statement' lines that are present between two discrete numeric line numbers in the souce?
Inquiring mind wants to know.
10000 ' A discrete line number in source
DMY1% = 1
DMY2% = 2
DMY3% = 3
DMY4% = 4
DMY5% = 5
DMY6% = 6
10005 PRINT DMY1%'semicolon' DMY2%'semicolon' DMY3%
That example has six 'lines' of source code between two discrete numeric line numbers in the source which are only five numeric digits apart.
At what point do we get into trouble relative to the number of statements in the source code between two discrete numeric line numbers?
Sure, I realize that we could write the above code as
DMY1% = 1'colon'DMY2% = 2:'colon'DMY3% = 3 ...
But at what point do we get in trouble between, for example, if we choose numeric line # 10000 then choose the next numeric line # to be, say 10001 in the example above? Or must we actually guarantee that we never have discrete line numbers in the souce which are less than the actuall number of 'statement' lines that are present between two discrete numeric line numbers in the souce?
Inquiring mind wants to know.
Comment