هذه قائمة لكودات برامج أهلا بالعالم لأكثر لغات البرمجة استخداما
أكشن سكربت
- أكشن سكربت 3
package { public class HelloWorld { public function HelloWorld() { trace("Hello, world!"); } } }
أيدا
with Ada.Text_IO; procedure Hello is begin Ada.Text_IO.Put_Line ("Hello, world!"); end Hello;
سي
#include <stdio.h> main() { printf("hello, world\n"); }
سي#
using System; internal static class HelloWorld { private static void Main() { Console.WriteLine("Hello, world!"); } }
سي++
#include <iostream> int main(){ std::cout << "Hello, World!" << std::endl; return 0; }
إيفل
class HELLO_WORLD create make feature make is do io.put_string("Hello, world!%N") end -- make end -- class HELLO_WORLD
غو
package main import "fmt" func main() { fmt.Println("Hello, world!") }
هاسكل
main = putStrLn "Hello, world!"
إتش تي إم إل 5
<!DOCTYPE html> <html> <head> <title>Hello, World!</title> </head> <body> <h1>Hello, world!</h1> </body> </html>
جافا
class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world!"); } }
جافاسكريبت
alert('Hello, world!');
لوا
print("Hello, world")
سي-الكائنية
#import <stdio.h> #import <objc/Object.h> @interface Hello : Object { } - hello; @end @implementation Hello - hello { printf("Hello, world!\n"); } @end int main(void) { id obj; obj = [Hello new]; [obj hello]; [obj free]; return 0; }
بيرل
print "Hello, World!\n";
بي إتش بي
<? echo "Hello, world!"?>
بايثون
print("Hello, world!")
آر
print "Hello, world!"
رست
fn main() { println!("Hello, world!"); }
روبي
puts "Hello, world!"
سكالا
object HelloWorld extends App { println("Hello, world!") }
سويفت
println("Hello, world!") // Swift 1 print("Hello, world!") // Swift 2
إس كيو إل
CREATE TABLE message (text char(15)); INSERT INTO message (text) VALUES ('Hello, world!'); SELECT text FROM message; DROP TABLE message;
إكس إم إل
<?xml version="1.0" encoding="UTF-8"?> <root> <title> XML Document </title> <para> Hello, world! </para> </root>