[ create a new paste ] login | about

Link: http://codepad.org/c9KgT8TF    [ raw code | output | fork ]

PHP, pasted on Jan 28:
1
2
3
4
5
6
7
8
9
<?php

function foo() { return 'hello world'; }

$exclamation = ($result = foo()) ? $result : "i'm speechless";

echo $exclamation;

?>


Output:
1
hello world


Create a new paste based on this one


Comments: