10

I am using https://godbolt.org/ to compile a simple C++ script but even the simplest

int main()
{
  std::cout << "Hello World!" << std::endl;
}

When I click Add new... --> Compiler --> Output I get: Compiler returned: 0

Hector Esteban
  • 1,011
  • 1
  • 14
  • 29

1 Answers1

7

As @Ayxan Haqverdili told me the missing steps are Output... > Run the compiled output

Hector Esteban
  • 1,011
  • 1
  • 14
  • 29