my code (its actually in C#):
Code:
string tmp;
while ((tmp = Console.ReadLine()) != ".")
        m_message += tmp;
is there a better way to get multiple lines of text input via the console?