Skip to content

Instantly share code, notes, and snippets.

@ikuwow
Last active August 23, 2016 11:55
Show Gist options
  • Save ikuwow/2bcc552c99e998e5bd887248ad477756 to your computer and use it in GitHub Desktop.
Save ikuwow/2bcc552c99e998e5bd887248ad477756 to your computer and use it in GitHub Desktop.
PHP
<?php
/**
* teratail - Q&A community for every thinking engineer
*
* @author Leverages Co. Ltd. Technology Media Lab.
* @since 2014/07/16
*/
function teratail(ThinkingEngineer $you)
{
$question = new Question($you->problems);
$you->postQuestion($question);
while (!$question->resolved) {
$answers = $you->getAnsweres();
if ($you->resolveQuestion($answers)) {
$you->appreciate("Thank you!");
break;
}
}
return $you->evolve();
}
@ikuwow
Copy link
Author

ikuwow commented Jun 13, 2016

はい

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment