[ create a new paste ] login | about

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

PHP, pasted on May 8:
1
2
3
4
5
6
7
8
9
10
11
12
<?php
function f() {
  echo "hello";
}

if(false) {
  function f() {
    echo "this shouldnt be here";
  }
}

f();


Output:
1
hello


Create a new paste based on this one


Comments: