Difference between revisions of "Salutare lume!"
From linux360
 (Added initial content)  | 
				 (mda, cascat)  | 
				||
| (21 intermediate revisions by 10 users not shown) | |||
| Line 1: | Line 1: | ||
==Introducere==  | ==Introducere==  | ||
| − | Am creeat acest articol din   | + | Am creeat acest articol din dorinţa de a arăta lumii diversitatea ''limbilor'' existente în informatică.  | 
| − | Ceea ce   | + | Ceea ce urmează sunt moduri de a ''spune'' atât de cunoscutul <tt>Salutare, lume!</tt> (<eng. ''Hello, world!'') în diverse limbaje de programare. Puteţi adăuga exemple noi cu condiţia să fie corecte programatic, să fie tratate în varianta standard a limbajului folosit şi să rămână sortate în ordine alfabetică.  | 
| − | + | Urmează exemplele:  | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
==BASIC==  | ==BASIC==  | ||
  10 PRINT "Hello, world!"  |   10 PRINT "Hello, world!"  | ||
  20 STOP  |   20 STOP  | ||
| + | |||
| + | ==Bourne Again Shell==  | ||
| + | <code><sh/>#!/bin/bash  | ||
| + | |||
| + | echo "Hello, world!"  | ||
| + | exit 0</code>  | ||
| + | |||
| + | ==Brainfuck==  | ||
| + |  ++++++++++  | ||
| + |  [  | ||
| + |   >+++++++>++++++++++>+++>+<<<<-  | ||
| + |  ]  | ||
| + |  >++.  | ||
| + |  >+.  | ||
| + |  +++++++.  | ||
| + |  .  | ||
| + |  +++.  | ||
| + |  >++.  | ||
| + |  <<+++++++++++++++.  | ||
| + |  >.  | ||
| + |  +++.  | ||
| + |  ------.  | ||
| + |  --------.  | ||
| + |  >+.  | ||
| + |  >.  | ||
==ANSI C==  | ==ANSI C==  | ||
| − | + | <code><c/>#include <stdio.h>  | |
| + | |||
| + | int main(void) {  | ||
| + |   printf("Hello, world!\n");  | ||
| + | |||
| + |   return 0;  | ||
| + | }</code>  | ||
| + | |||
| + | ==ANSI C++==  | ||
| + | <code><cpp/>#include <iostream>  | ||
| + | |||
| + | using namespace std;  | ||
| + | |||
| + | int main(void) {  | ||
| + |   cout << "Hello, world!" << endl;  | ||
| − | + |   return 0;  | |
| − | + | }</code>  | |
| − | + | ==Java==  | |
| − | + | <code><java/>public class MainApplication {  | |
| + |   public static void main(String args[]) {  | ||
| + |     System.out.println("Hello, world!");  | ||
| + |   }  | ||
| + | }</code>  | ||
==Pascal==  | ==Pascal==  | ||
| − | + | <code><pascal/>program HelloWorld;  | |
| − | + | ||
| − | + | begin  | |
| − | + |  writeln('Hello, world!');  | |
| − | + | end.</code>  | |
| + | ==Perl==  | ||
| + | <code><perl/>#!/usr/bin/perl  | ||
| + | |||
| + | print "Hello, world!";  | ||
| + | </code>  | ||
==PHP==  | ==PHP==  | ||
| − | + | <code><html/><html>  | |
| − | + |  <body>  | |
| − | + | <?php  | |
| − | + |  echo "Hello, world!";  | |
| − | + | ?>  | |
| − | + |  </body>  | |
| − | + | </html></code>  | |
| + | |||
| + | ==TCL==  | ||
| + | <code><tcl/>#!/usr/bin/tcl  | ||
| + | |||
| + | puts "Hello, world!";  | ||
| + | </code>  | ||
| + | |||
| + | ==C#==  | ||
| + | <code><java/>  | ||
| + | using System;  | ||
| + | public class MainClass  | ||
| + | {  | ||
| + |   public static void Main ()  | ||
| + |   {  | ||
| + |     Console.WriteLine ("Hello, world!");  | ||
| + |   }  | ||
| + | }  | ||
| + | </code>  | ||
[[Category:Collection]]  | [[Category:Collection]]  | ||
[[Category:Programming]]  | [[Category:Programming]]  | ||
Latest revision as of 15:24, 9 November 2006
Contents
Introducere
Am creeat acest articol din dorinţa de a arăta lumii diversitatea limbilor existente în informatică.
Ceea ce urmează sunt moduri de a spune atât de cunoscutul Salutare, lume! (<eng. Hello, world!) în diverse limbaje de programare. Puteţi adăuga exemple noi cu condiţia să fie corecte programatic, să fie tratate în varianta standard a limbajului folosit şi să rămână sortate în ordine alfabetică.
Urmează exemplele:
BASIC
10 PRINT "Hello, world!" 20 STOP
Bourne Again Shell
<sh/>#!/bin/bash
echo "Hello, world!" exit 0
Brainfuck
++++++++++ [ >+++++++>++++++++++>+++>+<<<<- ] >++. >+. +++++++. . +++. >++. <<+++++++++++++++. >. +++. ------. --------. >+. >.
ANSI C
<c/>#include <stdio.h>
int main(void) {
 printf("Hello, world!\n");
return 0;
}
ANSI C++
<cpp/>#include <iostream>
using namespace std;
int main(void) {
cout << "Hello, world!" << endl;
return 0;
}
Java
<java/>public class MainApplication {
 public static void main(String args[]) {
   System.out.println("Hello, world!");
 }
}
Pascal
<pascal/>program HelloWorld;
begin
writeln('Hello, world!');
end.
Perl
<perl/>#!/usr/bin/perl
print "Hello, world!";
PHP
<html/><html>
<body>
<?php
echo "Hello, world!";
?>
</body>
</html>
TCL
<tcl/>#!/usr/bin/tcl
puts "Hello, world!";
C#
<java/>
using System;
public class MainClass {
 public static void Main ()
 {
   Console.WriteLine ("Hello, world!");
 }
}
