Created
February 2, 2015 08:48
-
-
Save rightgo09/8aedc6a90e5c10eec314 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| abstract class Goo { | |
| public static function g() { | |
| echo "goooooo!\n"; | |
| } | |
| } | |
| Goo::g(); // goooooo! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment