// name: hey.cpp
// desc: hey there c++

// include files
#include <iostream>
#include <string>
using namespace std;

// entry point
int main( int argc, char ** argv )
{
    // allocate a variable to store text string
    string name;

    // print message
    cout << "what's yer name?: ";
    // get from input
    cin >> name;

    // print something
    cout << "hey there, " << name << "." << endl;

    // return, we are done
    return 0;
}
