i'm on Quincy 2002 reading from a book called "you can do it" for the first chapter it tells me to type out a few lines of text, and so far i can't see what's wrong with it. can anyone help?
1 2 3 4 5 6 7 8 9 10 11
//first program
//on 9/12/13
#include "playpen.h"
#include <iostream>
int main(){
fgw::playpen paper;
paper.display();
std::cout << "press RETURN to end program.";
std::cin.get();
}