Personal tools

Difference between revisions of "Salutare lume!"

From linux360

Jump to: navigation, search
m (Pascal: Code fix (ANSI C-ism :"> ))
m (Added syntax highlighting)
Line 7: Line 7:
  
 
==Bash==
 
==Bash==
#!/bin/bash
+
<code><sh/>#!/bin/bash
+
 
echo "Hello, world!"
+
echo "Hello, world!"
exit 0
+
exit 0</code>
  
 
==BASIC==
 
==BASIC==
10 PRINT "Hello, world!"
+
<code><basic/>10 PRINT "Hello, world!"
20 STOP
+
20 STOP</code>
  
 
==ANSI C==
 
==ANSI C==
#include <stdio.h>
+
<code><c/>#include <stdio.h>
+
 
int main(void) {
+
int main(void) {
  printf("Hello, world!\n");
+
  printf("Hello, world!\n");
+
 
  return 0;
+
  return 0;
};
+
};</code>
  
 
==Pascal==
 
==Pascal==
program HelloWorld;
+
<code><pascal/>program HelloWorld;
+
 
begin
+
begin
  writeln('Hello, world!');
+
writeln('Hello, world!');
end.
+
end.</code>
  
 
==PHP==
 
==PHP==
<html>
+
<code><html/><html>
  <body>
+
<body>
<?php
+
<?php
  echo "Hello, world!";
+
echo "Hello, world!";
?>
+
?>
  </body>
+
</body>
</html>
+
</html></code>
  
  
 
[[Category:Collection]]
 
[[Category:Collection]]
 
[[Category:Programming]]
 
[[Category:Programming]]

Revision as of 13:57, 17 January 2006

Introducere

Am creeat acest articol din dorinta de a arata lumii diversitatea limbilor existente in informatica.

Ceea ce urmeaza sunt moduri de a spune Salutare, lume! in diverse limbaje de programare. Puteti adauga exemple noi cu conditia sa fie corecte programatic, sa fie tratate in varianta standard a limbajului folosit si sa ramana sortate in ordine alfabetica.

Urmeaza exemplele:

Bash

<sh/>#!/bin/bash

echo "Hello, world!" exit 0

BASIC

<basic/>10 PRINT "Hello, world!" 20 STOP

ANSI C

<c/>#include <stdio.h>

int main(void) {

 printf("Hello, world!\n");
 return 0;

};

Pascal

<pascal/>program HelloWorld;

begin

writeln('Hello, world!');

end.

PHP

<html/><html>

<body>

<?php

echo "Hello, world!";

?>

</body>

</html>