Guest User

Untitled

a guest
Jun 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. function JustMakeItWorkDamnit($problem)
  4. {
  5. include('/modules/artificial-intelligence.php');
  6.  
  7. $options = array(
  8. "intelligence" => "100",
  9. "sense_of_humor" => "100",
  10. "whine_mode" => false,
  11. "red_tape" => false,
  12. "voice" => "sexy"
  13. )
  14.  
  15. $AI = new ArtificialIntelligence($options);
  16.  
  17. $solution = $AI->solve($problem);
  18.  
  19. return $solution;
  20.  
  21. }
  22.  
  23. ?>
Add Comment
Please, Sign In to add comment