Help for this page

Select Code to Download


  1. or download this
    use Inline CPP;
    use Inline CPP => Config => MYEXTLIB => 'my path/test.o';
    ...
       cout<<"myget() is ok\n";
       return 2;
    }
    
  2. or download this
    # include <iostream>
    using namespace std;
    ...
            double get();  
    };
    
  3. or download this
    #include "test.h"<br>
    <code>
    ...
       cout<<"Test::get() is ok\n";
       return 5;
    }