Skip to content

Instantly share code, notes, and snippets.

@Tasemu
Created March 8, 2015 22:24
Show Gist options
  • Save Tasemu/601725c3f93d26fb10c2 to your computer and use it in GitHub Desktop.
Save Tasemu/601725c3f93d26fb10c2 to your computer and use it in GitHub Desktop.
#include <iostream>;
using namespace std;
int betty = 5;
void changeBetty (x) {
betty = x;
}
void main () {
changeBetty(50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment