Hello world

Php code posted
created at 17 Jan 23:22, updated at 20 Jan 16:23

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
use strict;
use warnings;

print "Hello World!\n";

class Application {
   public function hello($msg) {
      echo 'Hello, '.$msg;
   }
}
$app = new Application();
$app->hello('World');
214 Bytes in 2 ms with coderay