Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # dotimes <code> (dotimes (variable value) statement) </code> {{ https://www.tutorialspoint.com/clojure/images/dotimes_statement.jpg }} ### Example <code> (ns clojure.examples.hello (:gen-class)) ;; This program displays Hello World (defn Example [] (dotimes [n 5] (println n))) (Example) </code> #### Output <code> 0 1 2 3 4 </code> ## Refs - https://www.tutorialspoint.com/clojure/clojure_dotimes_statement.htm open/dotimes.txt Last modified: 2024/10/05 06:15by 127.0.0.1