difference in USING overfill

Discussions relevant to the differences between LBB and LB4 which could affect code compatibility
tsh73
Posts: 44
Joined: Fri Apr 06, 2018 7:58 pm

difference in USING overfill

Post by tsh73 »

(tripped upon while working on
chart library
viewtopic.php?f=11&p=154#p154
)
LBB reacts on PRINT USING overfill (that is, number too big to fit to allotted space) differently from LB:

Code: Select all

print using ("#.##", 1/3)
print using ("#.##", 100/3)
LB:

Code: Select all

0.33
%33.33
LBB:

Code: Select all

0.33
????