Source: logic.js

/***********************************************************************
 * Copyright (c) 2017 Charles W. Roberts
 * All Rights Reserved
 *
 * No portion of this code may be copied or modified without the
 * prior written permission of Charles Roberts.
 *
 ***********************************************************************/

/**
 * @file Contains the global variables, objects, and functions for the
 * PC-Tran webpage.
 * @author Charles Roberts
 * @copyright Charles Roberts 2017
 */

/**
 * collection is the global object that is the collection of 
 * SpecialCharacter objects.  This object is an instance of the 
 * CharCollection class.
 * @type {CharCollection}
 */
let collection = new CharCollection();