Skip to content

Instantly share code, notes, and snippets.

View axiac's full-sized avatar

Valentin VĂLCIU axiac

View GitHub Profile
@axiac
axiac / TestFrameworkInATweet.php
Created February 29, 2016 15:13 — forked from mathiasverraes/TestFrameworkInATweet.php
A unit testing framework in a tweet.
<?php
function it($m,$p){echo ($p?'✔︎':'✘')." It $m\n"; if(!$p){$GLOBALS['f']=1;}}function done(){if(@$GLOBALS['f'])die(1);}