Update some of the OCaml examples so that they run successfully with `make check-ocaml-examples` (important for the CI). Some of the examples were written to depend on passed arguments. Temporarily disable the broken std_string example.
15 lines
196 B
OpenEdge ABL
15 lines
196 B
OpenEdge ABL
%module example
|
|
%{
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
using std::endl;
|
|
using std::string;
|
|
|
|
#include "example.h"
|
|
%}
|
|
|
|
%include "std_string.i"
|
|
%include example.h
|