fork download
  1. #include <iostream>
  2.  
  3.  
  4. namespace mine{
  5. //using namespace std;
  6. }
  7. namespace mine{
  8. void printstuff(){
  9. using namespace std;
  10. cout << "hi";
  11. }
  12. }
  13.  
  14.  
  15. int main() {
  16. // your code goes here
  17.  
  18. mine::printstuff();
  19. return 0;
  20. }
Success #stdin #stdout 0s 4472KB
stdin
Standard input is empty
stdout
hi