Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Clojure
(dotimes [_ 10]
  (println "Hello"))

The character _ means we don't want to bind the value to a symbol.
with Ada.Text_IO;
use Ada.Text_IO;
for I in 1 .. 10 loop
  Put_Line ("Hello");
end loop;

New implementation...
< >
programming-idioms.org