Serial Port will not go into command mode after entering $$$

#include "WiFly.h"

char passphrase[] = "268435459115635028";
char ssid[] = "Verizon AC30 E753";

void setup() 
{
  WiFly.begin();
  
  if (!WiFly.join("ssid", "passphrase")) 
  {
     // Handle the failure
  }
  
  // Rejoice in your connection
  
  Serial.print("IP: ");
  Serial.println(WiFly.ip());
}

void loop()
{
}