BR Limit (2**15/2)-1 = 16,383 Line #'s
Posted: Sun Oct 15, 2023 12:45 pm
As we know, everything has limits. In BR, a program has Line #'s, and they are limited to 16,383 lines.
You can add many lines of code to 1 line In the following example I am using only 1 line:
It seems that BR doesn't gracefully complain about an error at compile time, instead the function/library linkages "Go crazy!"
You can move functions to a separate library to get around the line # limitation.
You can add many lines of code to 1 line In the following example I am using only 1 line:
Code: Select all
10 A=1 !:
B=2 !:
C=3
You can move functions to a separate library to get around the line # limitation.