2 lines
116 B
Text
2 lines
116 B
Text
; The following computes the factorial of a number "n"
|
|
fact = product(indgen( n )+1) ; where n should be an integer
|