[ create a new paste ] login | about

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

PHP, pasted on Jan 25:
1
2
3
4
5
6
7
8
9
10
11
12
<?php

function test() {
function test2() {
echo "test2";
}
}

test();
test2();

?>


Output:
1
test2


Create a new paste based on this one


Comments: