Submission details
Task:Platformer
Sender:Team Purkka
Submission time:2015-09-16 19:00:02 +0300
Language:C++
Status:COMPILE ERROR

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:2:12: error: 'cout' was not declared in this scope
 int main(){cout<<"minä menen nyt pelaamaan mariota"<<endl;}
            ^
input/code.cpp:2:12: note: suggested alternative:
In file included from input/code.cpp:1:0:
/usr/include/c++/4.9/iostream:61:18: note:   'std::cout'
   extern ostream cout;  /// Linked to standard output
                  ^
input/code.cpp:2:55: error: 'endl' was not declared in this scope
 int main(){cout<<"minä menen nyt pelaamaan mariota"<<endl;}
                                                       ^
input/code.cpp:2:55: note: suggested alternative:
In file included from /usr/include/c++/4.9/iostream:39:0,
                 from input/code.cpp:1:
/usr/include/c++/4.9/ostream:564:5: note:   'std::endl'
     endl(basic_ostream<_CharT, _Traits>& __os)
     ^

Code

#include<iostream>
int main(){cout<<"minä menen nyt pelaamaan mariota"<<endl;}