This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket | |
(define (factorial n) | |
(define (i_factorial n acc) | |
(if (= 0 n) | |
acc | |
(i_factorial (- n 1) (* n acc)))) | |
(i_factorial n 1)) | |
(map (lambda (n) | |
(printf "~a~n" (factorial n))) (list 1 12 123 1234 12345)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun factorial (n) | |
(defun i_factorial (n acc) | |
(if (= 0 n) | |
acc | |
(i_factorial (- n 1) (* acc n)))) | |
(i_factorial n 1)) | |
(defun print-factorial (n) | |
(format T "~D~%" (factorial n))) | |
(mapcar 'print-factorial '(1 12 123 1234 12345)) |
raco exe test.rkttiming is as follows:
raco exe test.rkt time ./test real 0m0.697s user 0m0.581s sys 0m0.092s
time sbcl --script test.lisp real 0m0.139s user 0m0.085s sys 0m0.049sMaybe I/O in Racket is rather slow?
Aucun commentaire:
Enregistrer un commentaire