| 
<?php
 # include the magic
 include('mixin.php');
 
 # load up our classes
 e_MixinUtil::load('tests/base.php');
 e_MixinUtil::load('tests/extend.php');
 e_MixinUtil::load('tests/extend2.php');
 e_MixinUtil::load('tests/extend3.php');
 
 # stir it up!
 e_MixinUtil::mix();
 
 # initialize the class
 $test = new BaseClass;
 
 # show the merged cool stuff
 var_dump($test);
 |