2

Опционально dotimes можно передать возвращаемое значение (в данном случае "yo")

(dotimes (x 4 "yo") (print "hello"))
"hello"
"hello"
"hello"
"hello"
"yo"
-----------