#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0; // ends the program
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!"; // std output stream
return 0; // exit status
}
using System;
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{ // prints hello world
System.Console.WriteLine("Hello World!");
}
}
}
class HelloWorld {
public static void main( String []args ) {
System.out.println( "Hello World!" );
}
}
<?php
echo "Hello World!";
?>
print('Hello ,world');
puts "Hello World!"
object HelloWorld {
def main(args: Array[String]): Unit = {
println("Hello, world!")
}
}
console.log('Hello World');
fun main(args: Array<String>) {
println("Hello World!")
}
One comment on "Hello world!"
A WordPress Commenter
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.