Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
jsemander20510y<?php
/**
* Checks if $bf screwed up
* @param BoyFriend $bf
* @return bool
*/
function checkIfMessedUp($bf) {
return $bf->didSomethingStupid();
}
while (true) {
if (checkIfMessedUp($bf);) {
throw new Exception('No longer in love');
}
} -
IronPhreak102810yTry:
PickUpGirlAtBar()
Except RejectionError:
GoHome()
Except HasBoyfriendError:
GoHome()
Except AnxietyError:
GoHome() -
tomabolt177210yLove seems at first a good idea, then the routine appears and you will have a headache to debug this fuckin' recursion...

Hey girl,
I want our relationship to be a poor recursion, so that it never terminates.
#devspickupline
undefined