Hello, World! In different language
console.log("Hello, world!")
@echo off
echo Hello, world!
print("Hello, world!")
print("Hello, world!")
#include<iostream>
using namespace std;
int main() {
cout << "Hello, world!!";
return 0;
}
#include<stdio.h>
int main() {
printf("Hello Codelearn");
return 0;
}
program HelloFreetuts;
begin
writeln ('Welcome to freetuts.net');
end.
org 0x100
mov dx, msg
mov ah, 9
int 0x21
mov ah, 0x4c
int 0x21
msg db 'Hello, World!', 0x0d, 0x0a, '$'
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
fun main(args : Array<String>) {
println("Hello, World!")
}
puts "Hello, World!"
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
<!DOCTYPE html>
<html>
<body>
<h1>header</h1>
<?php
echo "Hello World!";
?>
</body>
</html>
CREATE TABLE helloworld (phrase TEXT);
INSERT INTO helloworld VALUES ("Hello, World!");
SELECT * FROM helloworld WHERE phrase = "Hello, World!";
``` tui bi ngu sql
perl
```perl
use strict;
use warnings;
print("Hello World\n"); # hello world bonnus new line
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSLog(@"Hello, World!");
}
return 0;
}
using System;
namespace HelloWorld {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello, World!");
}
}
}
with Ada.Text_IO;
use Ada.Text_IO;
procedure Hello_Dotnet is
begin
Put_Line(Item => “Hello .NET world!”);
end Hello_Dotnet;