
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
MsgBox("Hello World!")
End Sub
public class Hello1
{
public static void Main()
{
MessageBox.Show("Hello World!");
}
}
#include <iostream>
using namespace std;
int main ()
{
std::cout<<"Hello World!";
return 0;
}
<html>
<body>
Hello World!
</body>
</html>
alert("Hello World!");
<?php
echo "Hello World!";
?>
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
program HelloWorld(output);
begin
WriteLn('Hello World!'
;
end.
print("Hello World")
puts "Hello World!"
print "Hello World!\n";
#include <iostream>
using namespace std;
int main ()
{
std::cout<<"Hello World!";
return 0;
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
; Hello World!
; Microsoft Assembly Syntax
; To assemble, use DEBUG.EXE.
; Assemble at 0100h.
; Written by xNCK.
; Register DX will be filled with the hex value of its ASCII value (x = 120 = 0x7
; int 21h will output register DX to the screen.
; int 20h will terminate the program.
mov ah, 02
mov dx, 0048
int 21
mov dx, 65
int 21
mov dx, 6C
int 21
mov dx, 6C
int 21
mov dx, 6F
int 21
mov dx, 20
int 21
mov dx, 57
int 21
mov dx, 6F
int 21
mov dx, 72
int 21
mov dx, 6C
int 21
mov dx, 64
int 21
mov dx, 21
int 21
int 20
Copyright © 2026, NextGenUpdate.
All Rights Reserved.