Skip to content

Instantly share code, notes, and snippets.

@FraGoTe
Last active April 28, 2018 01:05
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 FraGoTe/9f4ecfd5b8d2ffbfc6dffe215f1476df to your computer and use it in GitHub Desktop.
Save FraGoTe/9f4ecfd5b8d2ffbfc6dffe215f1476df to your computer and use it in GitHub Desktop.
class Building
{
public:
String address;
int floors;
int currentFloor;
void goUpStairs(void)
{
currentFloor += 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment