/**
 * mylibrary.cpp
 *
 * This is a sample C++ code file that provides functions used by other files.
 * Sean Ho for CMPT166
 */
#include "mylibrary.h"

int numApples = 5;

int double_me(int x) {
  return x+x;
}

