Hey! People This is A Repository On A Github Used To Describe Hello World In Different Programming Languages
echo "Hello World!"
PRINT "Hello World!"
#include <stdio.h>
int main()
{
printf("Hello World!" );
return 0; }
#include <iostream>
int main()
{
std::cout << "Hello World!";
return 0;
}
using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
? "Hello World"
console.log 'Hello, world!
program HelloWorld;
begin
Writeln('Hello, world!');
end.
<html>
<head>
</head>
<body>
<h1>Hello World<h1>
</body>
</html>
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
document.write('Hello, world!');
$("body").append("Hello world!");
println("Hello world!")
print [Hello, world!]
disp('Hello, world!')
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}
program HelloWorld;
begin
WriteLn('Hello, world!');
end.
print "Hello, world!";
<!DOCTYPE html>
<html>
<body>
<h1>My first PHP page</h1>
<?php
echo "Hello World!";
?>
</body>
</html>
void setup(){
println("Hello, world!");
}
cat('Hello, world!')
puts "Hello, world!"
println("Hello World!")
MsgBox "Hello, World!"
Module Module1
Sub Main()
Console.WriteLine("Hello, world!")
End Sub
End Module
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/hello-world">
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<H1>
<xsl:value-of select="greeting"/>
</H1>
<xsl:apply-templates select="greeter"/>
</BODY>
</HTML>
</xsl:template>
<xsl:template match="greeter">
<DIV>from <I><xsl:value-of select="."/></I></DIV>
</xsl:template>
</xsl:stylesheet>
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="hello.xsl"?>
<hello-world> <greeter>An XSLT Programmer</greeter> <greeting>Hello, World!</greeting></hello-world>
Hey! Friends To Contribute
Please Add Some New Hello World Examples In Different Languages