Yes, I got it working fine and dandy.
Also, about getch(); I found this on google before I found cin.get();, however, I couldn't get getch() to work, I included cstdio and cstdlib, but it was a no go.
Secondly, I also found out that getch() is now deprecated in Visual Studio 2005. Meaning that sometime in the future, it'll no longer be supported. However, _getch(); is useable.
http://msdn2.microsoft.com/en-us/library/078sfkak.aspxI think this might be a windows specific thing though.

Seeming as how I can't get it to work in Dev-C++, but works fine in MS VS C++.
So, with this..
I can insert these instead:
#include <conio.h>
....
while (getline(in, line)) {
cout << line;
while (_getch() != 13);
cout << endl;
}
Mind you, I'm already done with that exercise, as mentioned in my original post. I just enjoy learning new stuff!#
Must write a .dll some day!@#