fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main(int argc, char** argv){
  4. cout << "Hello World" << endl;
  5. auto myVar = 7.8 * 12;
  6. cout << myVar << endl;
  7. return 0;
  8. }
Success #stdin #stdout 0s 2828KB
stdin
Standard input is empty
stdout
Hello World
93.6