import source from 1.3.40
[external/swig.git] / Examples / ruby / value / runme.rb
1 # file: runme.rb
2
3 require 'example'
4
5 # Create a couple of a vectors
6
7 v = Example::new_Vector(1, 2, 3)
8 w = Example::new_Vector(10, 11, 12)
9
10 print "I just created the following vectors\n"
11 Example::vector_print(v)
12 Example::vector_print(w)
13
14 # Now call some of our functions
15
16 print "\nNow I'm going to compute the dot product\n"
17 d = Example::dot_product(v,w)
18 print "dot product = #{d} (should be 68)\n"
19
20 # Add the vectors together
21
22 print "\nNow I'm going to add the vectors together\n"
23 r = Example::vector_add(v,w)
24 Example::vector_print(r)
25 print "The value should be (11, 13, 15)\n"
26
27 # Now I'd better clean up the return result r
28
29 print "\nNow I'm going to clean up the return result\n"
30 Example::free(r)
31
32 print "Good\n"