By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!Why would I want to do what ...LIBRARY /R doesn't support line continuations (it slows things down significantly).
Why would you want to do that?
I did some testing and I'm not sure about the "significantly" part. Using BTMs and a rather outrageous example (one line vs. that line broken into 27 pieces, see below) I see a difference in time of about 1% (to both read it into memory and execute it). I suppose the same could be true of library functions if they allowed continued lines.LIBRARY /R doesn't support line continuations (it slows things down significantly).
v:\> type fast.btm
1>nul echo abcdefghijklmnopqrstuvwxyz
v:\> type fast2.btm
1>nul echo ^
a^
b^
c^
d^
e^
f^
g^
h^
i^
j^
k^
l^
m^
n^
o^
p^
q^
r^
s^
t^
u^
v^
w^
x^
y^
z
v:\> timer & do i=1 to 10000 ( fast.btm ) & timer
Timer 1 on: 14:03:34
Timer 1 off: 14:03:47 Elapsed: 0:00:13.18
v:\> timer & do i=1 to 10000 ( fast2.btm ) & timer
Timer 1 on: 14:03:47
Timer 1 off: 14:04:00 Elapsed: 0:00:13.34