home *** CD-ROM | disk | FTP | other *** search
- ' +----------------------------------------------------------------------+
- ' | |
- ' | BASWIZ Copyright (c) 1990-1993 Thomas G. Hanlin III |
- ' | |
- ' | The BASIC Wizard's Library |
- ' | |
- ' +----------------------------------------------------------------------+
-
- DEFINT A-Z
-
- FUNCTION FactS! (Num AS INTEGER)
- Result! = 1!
- FOR N = 2 TO Num
- Result! = Result! * N
- NEXT
- FactS! = Result!
- END FUNCTION
-