Created
December 7, 2014 00:57
-
-
Save wbarcovsky/2e521aa75e763cf6b90d 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 | |
| require_once 'base.php'; | |
| ini_set('error_reporting', E_ALL); | |
| ini_set('display_errors', 'on'); | |
| $family = array(); | |
| $family[] = new Adult('Homer'); | |
| $family[] = new Adult('Marge'); | |
| $family[] = new Child('Bart'); | |
| $family[] = new Child('Lisa'); | |
| $boat = new Boat(); | |
| $boat->solve($family); | |
| print 'OK!'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment