TGC Codebase Backup



a little calculator program by The Nerd

12th Jul 2004 10:53
Summary

a little calculater program NOTE: THE PROGRAM IS MADE BY: The Nerd



Description

its a calculator program there help you calculating things!



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    `´ calculating program
`´ made by: The Nerd


`´ fist i make an INPUT
input "type first : ", a
input "type second : ", b
`´ then the computer calculating....
c = a
d = b
e = a + b
`´ display result on the screen
print e
`´ display message
print "press any key to quit"
`´ close the program
wait key
end
`´ this is the program