This class provide the Hello Word syntax and semantics for 593 programming languages.
language | helloCode |
---|---|
1C-Enterprise | // Hello World in 1C:Enterprise built-in script language
Message("Hello, World!"); |
4D | // Hello world in 4D, formerly known as 4th Dimension
ALERT("Hello World!") |
4Test | // Hello World in 4Test
testcase printHelloWorld()
print("Hello World!")
|
8th | \ Hello world in 8th
"Hello, world!\n" . |
ABAP4 | REPORT ZHB00001.
*Hello world in ABAP/4 *
WRITE: 'Hello world'.
|
ABC | \ Hello world in ABC
WRITE "Hello, World!" / |
ACPI Source Language | // Hello world in ACPI Source Language
Scope(\) {
Method(_WAK) {
Store ("Hello World", Debug)
Return(Package(2){0x00000000,0})
}
} |
ACS | // Hello world in Action Code Script (scripting language for the Hexen/Doom game engine)
#include "zcommon.acs"
script 1 ENTER
{
print(s:"Hello World!");
} |
ADVPL | // Hello World in ADVPL
User Function Hello()
Local cMsg := "Hello, world!"
conout(cMsg)
MsgInfo(cMsg)
Return |
AMOS | Rem Hello world in AMOS
Print "Hello world!" |
APC | // Hello World in the APC language for probes
probe program
{
on_entry log ("Hello, world!\n");
} |
APL | ⍝ Hello World in APL
⎕←\'Hello World\' |
ASP.NET | <!-- Hello World in ASP.NET -->
<%= "Hello World!" %> |
ASP (C♯) | <!-- Hello World for ASP.NET using C# -->
<% @ Page Language="C#" %>
<% ="Hello World!" %> |
ASP (JavaScript) | Hello World for Microsoft ASP (in JavaScript)
<%@ language="javascript" %>
<html><body>
<%
Response.Write('Hello World!');
%>
</body></html>
|
ASP (VBE) | <!-- Hello World in ASP-VBE (Visual Basic Script Encided) -->
<html>
<script language="VBScript.Encode">#@~^HQAAAA==@#@&HdTAK6PrCsVKP WMV[Zr@#@&HwcAAA==^#~@</script>
</html>
|
ASP (VBS) | Hello World for Microsoft ASP (in VBScript)
<%@ language="vbscript" %>
<html><body>
<%
Response.write "Hello World!"
%>
</body></html>
|
ATS | // Hello world in ATS
implement main () = begin
print ("Hello, world!"); print_newline ()
end |
AWK | # Hello world in AWK
BEGIN {
print "Hello World!"
} |
Action! | ; Hello world in Action! programming language for the Atari 8-Bit computers
PROC Main()
PrintE("Hello World!")
RETURN
|