Hello world/Text: Difference between revisions

Rename Perl 6 -> Raku, alphabetize, minor clean-up
No edit summary
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
Line 211:
printf($"Hello world!"l$)
)</lang>
 
=={{header|ALGOL-M}}==
<lang algol>BEGIN
WRITE( "Hello world!" );
END</lang>
 
=={{header|ALGOL W}}==
Line 221 ⟶ 216:
write( "Hello world!" )
end.</lang>
 
=={{header|ALGOL-M}}==
<lang algol>BEGIN
WRITE( "Hello world!" );
END</lang>
 
=={{header|Alore}}==
Line 297:
=={{header|Arturo}}==
<lang arturo>print "Hello world!"</lang>
 
=={{header|AsciiDots}}==
 
<lang AsciiDots>
.-$'Hello, World!'
</lang>
 
=={{header|Astro}}==
Line 304 ⟶ 310:
 
<lang asymptote>write('Hello world!');</lang>
 
=={{header|AsciiDots}}==
 
<lang AsciiDots>
.-$'Hello, World!'
</lang>
 
=={{header|ATS}}==
Line 395:
{{works with|M2000 Interpreter}}
<lang qbasic>PRINT "Hello world!"</lang>
 
=={{header|BASIC256}}==
<lang BASIC256>PRINT "Hello world!"</lang>
 
=={{header|Basic Casio}}==
Line 403 ⟶ 400:
or just
<lang Basic Casio>"Hello World!"</lang>
 
=={{header|BASIC256}}==
<lang BASIC256>PRINT "Hello world!"</lang>
 
=={{header|Batch File}}==
Line 732:
}
</lang>
 
 
=={{header|Clay}}==
Line 741 ⟶ 740:
=={{header|Clean}}==
<lang clean>Start = "Hello world!"</lang>
 
=={{header|Clio}}==
<lang clio>'hello world!' -> print</lang>
 
=={{header|Clipper}}==
Line 747 ⟶ 749:
=={{header|CLIPS}}==
<lang clips>(printout t "Hello world!" crlf)</lang>
 
=={{header|Clio}}==
<lang clio>'hello world!' -> print</lang>
 
=={{header|Clojure}}==
Line 806 ⟶ 805:
 
<lang cf0x10>"Hello world!"</lang>
 
 
=={{header|Commodore BASIC}}==
Line 952 ⟶ 950:
64
</lang>
 
=={{header|Déjà Vu}}==
<lang dejavu>!print "Hello world!"</lang>
 
=={{header|DeviousYarn}}==
<lang deviousyarn>o:"Hello world!</lang>
 
=={{header|Delphi}}==
Line 967 ⟶ 959:
end.
</lang>
 
=={{header|DeviousYarn}}==
<lang deviousyarn>o:"Hello world!</lang>
 
=={{header|DIV Games Studio}}==
Line 1,038 ⟶ 1,033:
end class
</lang>
 
=={{header|Déjà Vu}}==
<lang dejavu>!print "Hello world!"</lang>
 
=={{header|E}}==
Line 1,776 ⟶ 1,774:
FINISH;
</lang>
 
=={{header|Keg}}==
<lang keg>Hello world\!</lang>
Line 1,810 ⟶ 1,809:
_h1 Hello world!\n
</lang>
 
 
=={{header|Lang5}}==
Line 1,817 ⟶ 1,815:
=={{header|langur}}==
<lang langur>writeln "yo, peeps"</lang>
 
=={{header|Lasso}}==
A plain string is output automatically.
<lang Lasso>'Hello world!'</lang>
 
=={{header|LaTeX}}==
Line 1,829 ⟶ 1,831:
=={{header|Latitude}}==
<lang Latitude>putln "Hello world!".</lang>
 
=={{header|LDPL}}==
<lang LDPL>
procedure:
display "Hello World!" crlf
</lang>
 
=={{header|Lasso}}==
A plain string is output automatically.
<lang Lasso>'Hello world!'</lang>
 
=={{header|LFE}}==
<lang lisp>
(: io format '"Hello world!~n")
</lang>
 
=={{header|LC3 Assembly}}==
Line 1,864 ⟶ 1,851:
hello .stringz "Hello World!"
.end</lang>
 
=={{header|LDPL}}==
<lang LDPL>
procedure:
display "Hello World!" crlf
</lang>
 
=={{header|LFE}}==
<lang lisp>
(: io format '"Hello world!~n")
</lang>
 
=={{header|Liberty BASIC}}==
Line 2,019 ⟶ 2,017:
end
</lang>
 
 
=={{header|Luna}}==
Line 2,145 ⟶ 2,142:
----------
</pre>
 
=={{header|MIPS Assembly}}==
{{works with|MARS}} and {{works with|SPIM}}
Line 2,563 ⟶ 2,561:
<lang perl>use 5.010;
say 'Hello world!';</lang>
 
=={{header|Perl 6}}==
<lang perl6>say 'Hello world!';</lang>
In an object-oriented approach, the string is treated as an object calling its '''say()''' method:
<lang perl6>"Hello, World!".say();</lang>
 
=={{header|Phix}}==
Line 2,818 ⟶ 2,811:
 
=={{header|Raku}}==
(formerly Perl 6)
<lang perl6>say 'Hello world!';</lang>
In an object-oriented approach, the string is treated as an object calling its '''say()''' method:
<lang perl6>"Hello, World!".say();</lang> =={{header|Raku}}==
<lang raku>say 'Hello world!';</lang>
In an object-oriented approach, the string is treated as an object calling its '''say()''' method:
Line 2,860 ⟶ 2,857:
 
call lineout ,"Hello world!"</lang>
 
=={{header|RTL/2}}==
<lang RTL/2>TITLE Goodbye World;
 
LET NL=10;
 
EXT PROC(REF ARRAY BYTE) TWRT;
 
ENT PROC INT RRJOB();
 
TWRT("Hello world!#NL#");
RETURN(1);
 
ENDPROC;</lang>
 
=={{header|Ring}}==
<lang ring>See "Hello world!"</lang>
 
=={{header|Risc-V}}==
<lang Risc-V>.data
Line 2,889 ⟶ 2,873:
ecall
</lang>
 
=={{header|RTL/2}}==
<lang RTL/2>TITLE Goodbye World;
 
LET NL=10;
 
EXT PROC(REF ARRAY BYTE) TWRT;
 
ENT PROC INT RRJOB();
 
TWRT("Hello world!#NL#");
RETURN(1);
 
ENDPROC;</lang>
 
=={{header|Ruby}}==
Line 3,349 ⟶ 3,347:
stdout.printf("Hello world!\n");
}</lang>
 
=={{header|VAX Assembly}}==
 
Line 3,359 ⟶ 3,358:
.end hello ;transfer address for linker
</lang>
 
=={{header|VBScript}}==
{{works with|Windows Script Host|5.7}}
10,327

edits