******************************************************* ****** VintEval © 1996 made by Maurice van Wanum ****** ******************************************************* ****** This program is Public Domain (PD) !! ****** ******************************************************* Note: this product is delivered 'as is'. NO WARRANTY WILL BE TAKEN !!! VintEval is a simple postfix evaluator for VInts. VInts are unsigned integers with a maximum size of ±315.000 digits. This program uses postfix-notation, this means you first enter the arguments and then the operator, eg. 4 5+ (yields 9) Possible operators : + add, adds 2 values, eg. 12 123 + (yields 135). - substract, subtracts 2 values, eg. 12 11- (1). * multiply, eg. a b * / division, eg. a b / ^ power, 10 10^ yields ten to the tenth power. ! faculty, eg. 70! (note : it takes a lot of time to print 1000!) Examples: 10 10 ^ 1 + (yields 10000000001 or 10^10 + 1) 12 12 * 40 + (yields 12 * 12 + 40) 40 12 12 * + (yields 40 + (12 * 12) ) 12 12 40 + * (yields 12 * (12 + 40) ) Other commands : M print available memory ; do not print answers >[filename] redirects output to [filename] <[filename] gets input from [filename] x close last redirection or exit program Requirements ------------ None, this program has been made on a Amiga 500 and should work on every amiga However printing numbers that are bigger than ca. 200 digits will take up a lot time Contacting the author --------------------- Send bugreports, etc. to : Maurice van Wanum Julianastraat 26 3361 XH Sliedrecht Holland E-Mail : M.vanWanum@et.tudelft.nl Have fun !!! Maurice