/*
 * burton rosenberg
 * 20 sept 2001
 *
 */

class Node
{
    String content ;
    Node next ;
}


