fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. #define retrun return
  5.  
  6. std::string foo() {
  7. retrun "Yes it does";
  8. }
  9.  
  10. int main(void) {
  11. std::cout << foo() << std::endl;
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4496KB
stdin
Standard input is empty
stdout
Yes it does