Show pagesourceOld revisionsBacklinksBack to top Share via Share via... Twitter LinkedIn Facebook Pinterest Telegram WhatsApp Yammer Reddit TeamsRecent ChangesSend via e-MailPrintPermalink × Table of Contents dotimes Example Refs dotimes (dotimes (variable value) statement) Example (ns clojure.examples.hello (:gen-class)) ;; This program displays Hello World (defn Example [] (dotimes [n 5] (println n))) (Example) Output 0 1 2 3 4 Refs https://www.tutorialspoint.com/clojure/clojure_dotimes_statement.htm open/dotimes.txt Last modified: 2024/10/05 06:15by 127.0.0.1