/in/foo.cc:1:9: error: #include expects "FILENAME" or <FILENAME>
1 | #include<iostream>
| ^
/in/foo.cc:4:11: error: stray '\342' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc:4:12: error: stray '\200' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc:4:13: error: stray '\235' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc:4:26: error: stray '\' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc:4:28: error: stray '\342' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc:4:29: error: stray '\200' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc:4:30: error: stray '\235' in program
4 | cout<<”hello world!\n”;
| ^
/in/foo.cc: In function 'int main()':
/in/foo.cc:4:1: error: 'cout' was not declared in this scope
4 | cout<<”hello world!\n”;
| ^~~~
/in/foo.cc:1:1: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 | #include<iostream>
/in/foo.cc:4:6: error: 'lt' was not declared in this scope
4 | cout<<”hello world!\n”;
| ^~