Skip to content

Instantly share code, notes, and snippets.

@rightgo09
Created February 2, 2015 08:48
Show Gist options
  • Select an option

  • Save rightgo09/8aedc6a90e5c10eec314 to your computer and use it in GitHub Desktop.

Select an option

Save rightgo09/8aedc6a90e5c10eec314 to your computer and use it in GitHub Desktop.
<?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