Files
BlitzNext/#Test/tutorials/basic_tuts/input.bb
T

15 lines
235 B
BlitzBasic
Raw Normal View History

2014-02-26 16:09:41 +13:00
number = Input ("Type a number: ")
number1 = Input ("Type another number: ")
Total= number+number1
Print "Your two numbers are " Print number:Print number1
Print "If you add your two numbers together they equal: " Print Total