fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void function_name ()
  5. {
  6. cout << "Hello, world" << endl;
  7. }
  8.  
  9. int main()
  10. {
  11. function_name(); // Вызов функции
  12. return 0;
  13. }
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
Hello, world