Problem helloworld
User Evoi
Submission Time 2024-01-08 15:43:57
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp:2:5: error: cannot declare ‘::main’ to be a global variable
2 | int main {
| ^~~~
helloworld.cpp:3:2: error: ‘cout’ was not declared in this scope
3 | cout << "hello world";
| ^~~~
helloworld.cpp:1:1: note: ‘std::cout’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | using namespace std;
helloworld.cpp:3:23: error: expected ‘}’ before ‘;’ token
3 | cout << "hello world";
| ^
helloworld.cpp:2:10: note: to match this ‘{’
2 | int main {
| ^
helloworld.cpp:4:1: error: expected declaration before ‘}’ token
4 | }
| ^