انتقل إلى المحتوى

قائمة برامج أهلا بالعالم

هذه المقالة يتيمة. ساعد بإضافة وصلة إليها في مقالة متعلقة بها
يفتقر محتوى هذه المقالة إلى مصادر موثوقة.
من ويكيبيديا، الموسوعة الحرة

هذه قائمة لكودات برامج أهلا بالعالم لأكثر لغات البرمجة استخداما

  • أكشن سكربت 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!"
<!DOCTYPE html>
<html>
  <head>
    <title>Hello, World!</title>
  </head>
  <body>
= Hello, world! =
  </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>

مراجع

[عدل]