/*
App.cpp
Written by Matthew Fisher

App.cpp contains main() and is the source of all application-specific code.
*/

#include "Main.h"

class App
{
public:
    void Go();
    
private:
    
};

void App::Go()
{
    cout << "hello world!" << endl;
    cin.get();
}

void main()
{
    App A;
    A.Go();
}