A developers way of describing what happened

Here is a silly joke I came up with after I spilled coffee on my desk:


	$user = new User();
	$esspresso = new Drink('coffee','small',1);
try{
	$user->drink($esspresso);
}
catch{
	$user->curse();
	$user->go_and_get('mop');
	$user->wipe('table');
	$another_esspresso = new Drink('coffee','small',1);
}

Haha you hardcoding wizard! :slight_smile:

I’m no good at coding but I get the gyst.
Pretty funny in a real geeky way.