fork download
  1. #include <functional>
  2.  
  3. std::function< double() > func;
  4.  
  5. int foo() { return 7; }
  6.  
  7. int main() {
  8. func = foo;
  9. }
Success #stdin #stdout 0s 2892KB
stdin
Standard input is empty
stdout
Standard output is empty