Skip to content

Instantly share code, notes, and snippets.

Created February 2, 2013 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7cbcf5e80768bea8295f to your computer and use it in GitHub Desktop.
Save anonymous/7cbcf5e80768bea8295f to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
void fantasy(int &dopamine)
{
if (dopamine > 1)
{
cout << "Fuck this. I refuse." << endl;
dopamine--;
}
return;
}
int main()
{
bool trigger = 0;
int dopamine = 0;
int selfControl;
if (trigger == 1)
{
dopamine++;
fantasy(int dopamine);
}
trigger = 0;
selfControl++;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment