Skip to content

Instantly share code, notes, and snippets.

@jjoocceeee
Last active May 28, 2020 02:46
Show Gist options
  • Save jjoocceeee/a7432a442793546954e3a5053a92b92e to your computer and use it in GitHub Desktop.
Save jjoocceeee/a7432a442793546954e3a5053a92b92e to your computer and use it in GitHub Desktop.
Comment blog post paragraph
function question() {
if (person.readCodeSpeed > person.readSentenceSpeed || person.readCodeDesire > person.readSentenceDesire) {
comments = false;
} else {
comments = true;
}
if (person.readSentenceAge >= person.readCodeAge) {
person.fasterReading = code;
} else {
person.fasterReading = sentence;
}
time = money;
switch (person.fasterReading) {
case sentence:
if (comments) {
return money++;
} else {
return money--;
}
case code:
if (comments) {
return money--;
} else {
return money++;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment