fork download
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. namespace base_lib
  7. {
  8. namespace sys
  9. {
  10. namespace ct
  11. {
  12. namespace meta
  13. {
  14. void some_funcl()
  15. {
  16. cout << "Hello, world!";
  17. }
  18. }
  19. }
  20. }
  21.  
  22. using sys::ct::meta::some_funcl;
  23. }
  24.  
  25. int main()
  26. {
  27. base_lib::some_funcl();
  28.  
  29. return 0;
  30. }
  31.  
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Hello, world!