In order to view and play with the Hack Pack coding console (IDE), please visit this page on a Mac, PC, or Chromebook.
Mobile and Tablets are currently not supported (sorry!).
Bonus Content Unlocked

LABEL MAKER

label-maker
Go behind the scenes on the design of the LABEL MAKER by pranking your friends with a custom function!
void prankTextSwap(int mode) {
  if(mode == 1){
    if(text == "MIKE"){
      text = "BUTT";
    }
  } else if (mode == 2) {
    if (text != "MIKE") {
      text = "BUTT";
    }
  }
}