test

Php code posted by -.-.-.-.-.-.-.
created at 08 Feb 12:53, updated at 10 Feb 18:15

Edit | Back
1
2
3
4
5
6
7
8
9
10
11

func sayHello( $whom, $like = true ) {
    $smile = ":(";
    if( $like ) $smile = ":)";
    print "Hello " . $whom . " " . $smile . PHP_EOL;
    return True
}

while (TRUE){
 sayHello( "World" );
}
211 Bytes in 2 ms with coderay