// This project discards the Serial output from the sketch; 
// instead, it connects the serial monitor to a physical serial port on your computer.
//
// Only works on Chrome

void setup() {
  Serial.begin(9600);
  Serial.println("You won't see me!");
}

void loop() {
    Serial.println("You won't see me!");
}