"Fossies" - the Fresh Open Source Software Archive

Member "swig-4.1.1/Examples/test-suite/scilab/abstract_access_runme.sci" (30 Nov 2022, 206 Bytes) of package /linux/misc/swig-4.1.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Scilab source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 exec("swigtest.start", -1);
    2 
    3 try
    4     D = new_D();
    5 catch
    6     swigtesterror();
    7 end
    8 if A_do_x(D) <> 1 then swigtesterror(); end
    9 
   10 try
   11     delete_D(D);
   12 catch
   13     swigtesterror();
   14 end
   15 
   16 exec("swigtest.quit", -1);