Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
let rec n_hello_worlds (n : int) : unit = if n = 0 then () else (print_endline "Hello World!"; n_hello_worlds (n-1)) n_hello_worlds 10
(dotimes [_ 10] (println "Hello"))
IDENTIFICATION DIVISION. PROGRAM-ID. hello 10 times. PROCEDURE DIVISION. PERFORM 10 TIMES DISPLAY "Hello" END-PERFORM STOP RUN.
for (var i = 0; i < 10; i++) print("Hello");
print("Hello\n" * 10);
1..10 |> Enum.each(fn _ -> IO.puts "Hello" end)
lists:foreach( fun(_) -> io:format("Hello~n") end, lists:seq(1, 10)).
program main implicit none integer :: i do i=1,10 write (*,'(A)') "Hello" end do end program main
10.times { println 'Hello' }
for (let i = 0; i < 10; i++) { console.log("Hello"); }
[...Array(10)].forEach(() => console.log('Hello'))
let count = 0; while (count < 10) { count++; console.log('Hello'); };
console.log( 'Hello\n'.repeat(10) )
System.out.print("Hello\n".repeat(10));
for(int i=0;i<10;i++) System.out.println("Hello");
repeat(10) { println("Hello") }
for(x in 1..10) { println("Hello") }
(0..9).forEach { println("Hello") }
(loop repeat 10 do (write-line "Hello"))
for i=1, 10 do print('Hello') end
print(string.rep("Hello\n", 10))
print(("Hello\n"):rep(10))
local i = 0 repeat i = i + 1 print("Hello") until i == 10
for (NSInteger i=0;i<10;i++){ NSLog(@"Hello world"); }
for ($i = 0; $i < 10; $i++) { echo 'Hello' . PHP_EOL; }
foreach(range(1, 10) as $i) echo 'Hello'. PHP_EOL;
var i: integer; begin for i:=1 to 10 do WriteLn('Hello'); end;
print "Hello\n" x 10;
say "Hello" for 1 .. 10;
print "Hello\n" for 1 .. 10;
:- initialization(main). main :- loop(10). loop(0). loop(N) :- N>0, write('hello') , nl, N1 = N - 1, loop(N1).
print("Hello\n"*10)
for _ in range(10): print("Hello")
10.times do puts "Hello" end
10.times { puts 'Hello' }
puts "Hello\n" * 10
for _ in 0..10 { println!("Hello"); }
print!("{}", "Hello\n".repeat(10));
(0 until 10).foreach( _ => println("Hello"))
println("Hello\n"*10)
(define (hellos i) (if (> i 0) (begin (display "Hello") (newline) (hellos (- i 1))))) (hellos 10)
(for-each (lambda (x) (display "Hello\n")) (iota 10))
(do ((i 0 (+ i 1))) ((= i 10)) (display "Hello") (newline))
10 timesRepeat: [Transcript showln: 'Hello'].