LB Booster
Programming >> Liberty BASIC language >> Conditional use of LBB and LB http://lbb.conforums.com/index.cgi?board=lblang&action=display&num=1444689321 Conditional use of LBB and LB
Post by RNBW on Oct 12th, 2015, 10:35pm
How do I set up conditional use of LBB and LB so that a program can use either
Re: Conditional use of LBB and LB
Post by sirguylittle on Oct 13th, 2015, 01:28am
You can test for the value of the system variable Platform$
Code:
if Platform$ = "Windows (LBB)" then
print "LBB"
else
print "LB"
end if