fork download
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <stdio.h>
  4.  
  5. constexpr int foo(int a, int b)
  6. {
  7. return a*b;
  8. }
  9.  
  10. int bar(int a, int b)
  11. {
  12. return a*b;
  13. }
  14.  
  15. int a = bar(1,2);
  16.  
  17. int main(){ std::cout << a; }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
2