REM My first program - Simple Calculator
DO
CLS
input "Enter first number:"; num1#
print "First number is "; num1#
input "Enter second number:"; num2#
print "Second number is "; num2#
sum1# = num1# + num2#
print "The sum of the first and second numbers you entered is: "; sum1#
wait 5000
LOOP
And you can download it at: http://www.wizardduels.com/hosted/Calc1.exe
I did this in five minutes, last time I programmed anything in ANY basic was three years ago, I'm really rusty, I'm using the trial version but I am going to buy PRO. Is this a good start for a beginner?