Liberty BASIC Help Online

STR$( n )
STR$(numericExpression)
 
Description:
This function returns a string expressing the result of numericExpression
 
Usage:
 
age = 23
age$ = str$(age)
price = 2.99
price$ = str$(price)
totalApples = 37
print "Total number of apples is " + str$(totalApples)


Copyright (C) 2003 Shoptalk Systems
Liberty BASIC - http://www.libertybasic.com/