int main()
{
    UserInterface start;

    start.startProgram();

    return 0;
}
Exemplo n.º 2
0
int main()
{
    UserInterface* n = new UserInterface(); //START
    n->startProgram();
    return 0;
    //THINGS TO DO
    //documentation avl vs hash
    //for loop up to 15 ^
    //AND OR
    //add file using append (maintanance mode)
    //stress test (maybe show parsing with both)
}