aboutsummaryrefslogtreecommitdiff
path: root/Examples/ocaml/simple/runme.ml
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/ocaml/simple/runme.ml')
-rw-r--r--Examples/ocaml/simple/runme.ml33
1 files changed, 33 insertions, 0 deletions
diff --git a/Examples/ocaml/simple/runme.ml b/Examples/ocaml/simple/runme.ml
new file mode 100644
index 000000000..4f7a407ef
--- /dev/null
+++ b/Examples/ocaml/simple/runme.ml
@@ -0,0 +1,33 @@
+(* runme.ml *)
+
+open Swig
+open Example
+
+(* Call our gcd() function *)
+
+exception NoReturn
+
+let x = 42 to int
+let y = 105 to int
+let g = _gcd '(x,y) as int
+let _ = Printf.printf "The gcd of %d and %d is %d\n" (x as int) (y as int) g
+
+(* Manipulate the Foo global variable *)
+
+(* Output its current value *)
+let _ = Printf.printf "Foo = %f\n" (_Foo '() as float)
+
+(* Change its value *)
+let _ = _Foo '(3.1415926)
+
+(* See if the change took effect *)
+let _ = Printf.printf "Foo = %f\n" (_Foo '() as float)
+
+
+
+
+
+
+
+
+