april_day_2026/lisp/example1.lisp
Tayfer 3999a30496 lisp lang update
обновляю значения на пк, он быстрее ноута
2026-03-30 15:24:13 +03:00

10 lines
No EOL
172 B
Common Lisp

(defun b1 ()
(let ((x 0))
(dotimes (n 500000000) (incf x))
x))
(defun b2 ()
(let ((x 0))
(declare (fixnum x))
(dotimes (n 1000000000) (incf x))
x))