(dotimes (variable value) statement)
(ns clojure.examples.hello (:gen-class)) ;; This program displays Hello World (defn Example [] (dotimes [n 5] (println n))) (Example)
0 1 2 3 4