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.
- Ada
- C
- Caml
- Clojure
- Cobol
- C++
- C#
- C#
- C#
- D
- D
- Dart
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Go
- Go
- Groovy
- Haskell
- JS
- JS
- JS
- JS
- Java
- Java
- Java
- Java
- Java
- Java
- Java
- Kotlin
- Kotlin
- Kotlin
- Lisp
- Lua
- Lua
- Lua
- Lua
- Obj-C
- PHP
- PHP
- Pascal
- Perl
- Perl
- Perl
- Prolog
- Python
- Python
- Python
- Python
- Python
- Python
- Ruby
- Ruby
- Ruby
- Rust
- Rust
- Scala
- Scala
- Scheme
- Scheme
- Scheme
- Smalltalk
- VB
let rec n_hellos
(n : int)
: unit =
if n = 0 then
()
else
(print_endline "Hello";
n_hellos (n-1))
n_hello_worlds 10
IDENTIFICATION DIVISION.
PROGRAM-ID. hello 10 times.
PROCEDURE DIVISION.
PERFORM 10 TIMES
DISPLAY "Hello"
END-PERFORM
STOP RUN.
Console.WriteLine( string.Concat(Enumerable.Repeat("Hello\n", 10)) );
Console.WriteLine(string.Join(Environment.NewLine, Enumerable.Repeat("Hello", 10)));
for (var i = 0; i < 10; i++)
print("Hello");
program main
implicit none
integer :: i
do i=1,10
write (*,'(A)') "Hello"
end do
end program main
let count = 0;
while (count < 10) {
count++;
console.log('Hello');
};
for(int i=0;i<10;i++)
System.out.println("Hello");
generate(() -> "Hello%n")
.limit(10)
.forEach(out::printf);
range(0, 10).forEach(x -> out.println("Hello"));
for(x in 1..10) {
println("Hello")
}
(loop repeat 10 do (write-line "Hello"))
for i=1, 10 do
print('Hello')
end
local i = 0
repeat
i = i + 1
print("Hello")
until i == 10
print(string.rep("Hello\n", 10))
for (NSInteger i=0;i<10;i++){
NSLog(@"Hello");
}
for ($i = 0; $i < 10; $i++) {
echo 'Hello' . PHP_EOL;
}
Note the necessary newline (PHP_EOL), not to print every time on the same line
var
i: integer;
begin
for i:=1 to 10 do
WriteLn('Hello');
end;
print "Hello\n" for 1 .. 10;
Note the necessary newline (\n), not to print every time on the same line
say "Hello" for 1 .. 10;
Recent (5.10 and later) versions of Perl also provide
say function, which automatically adds the newline.
say function, which automatically adds the newline.
:- initialization(main).
main :- loop(10).
loop(0).
loop(N) :- N>0, write('Hello') , nl, N1 = N - 1, loop(N1).
f = lambda: print('Hello')
for x in range(10): f()
def f(): print('Hello')
for x in range(10): f()
i = 0
while i < 10:
print('Hello')
i += 1
(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)
(do ((i 0 (+ i 1)))
((= i 10))
(display "Hello")
(newline))
(for-each (lambda (x) (display "Hello\n")) (iota 10))
Chez Scheme
10 timesRepeat: [Transcript showln: 'Hello'].