fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. // Declare and initialize variables here
  7. string coddy = "I am learning to code with Coddy!";
  8.  
  9. // Output the values
  10. std::cout << "Coddy = \"" << coddy << "\"" <<std::endl;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Coddy = "I am learning to code with Coddy!"