' Data-type Demo
'
' Description: This is a program that shows
' how to store different data types into variables.
'
' Author: Boredom Inc., Brendan
'
' License: Public Domain
' Declare our variables,
dim age as integer
dim price as single
dim firstName as string
dim lastName as string
dim fullName as string
' Assign values
input "Enter your age: ", age
input "Enter a random price: ", price
input "Enter your name: ", fullname
' output
print "age = ";age;" years old."
print "price = $";price
print "name = ";fullName
print ""
print "I can see why BASIC sucks already."
print "Fantastic. Linebreaks inside of quotes"
print "don't work, either."
print ""
print ""
print "Press any key to exit."
sleep
end