fork download
  1. // in the .h files
  2. namespace helper{
  3. void helper1();
  4. void helper2();
  5. }
  6.  
  7. // in the cpp files
  8. namespace helper{
  9. void helper1() {
  10. // blah blah blah
  11. }
  12.  
  13. void helper2() {
  14. // blah blah blah
  15. helper1(); // return some results from helper1
  16. }
  17. }
  18.  
  19. int main(){}
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty