/tags/rel-1-3-15/SWIG/Examples/perl5/value/example.pl
Perl | 38 lines | 26 code | 8 blank | 4 comment | 0 complexity | 23659a19791467a90434415f0573675c MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1# file: example.pl
2
3use 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
10print "I just created the following vectors\n";
11example::vector_print($v);
12example::vector_print($w);
13
14# Now call some of our functions
15
16print "\nNow I'm going to compute the dot product\n";
17$d = example::dot_product($v,$w);
18print "dot product = $d (should be 68)\n";
19
20# Add the vectors together
21
22print "\nNow I'm going to add the vectors together\n";
23$r = example::vector_add($v,$w);
24example::vector_print($r);
25print "The value should be (11,13,15)\n";
26
27# Now I'd better clean up the return result r
28
29print "\nNow I'm going to clean up the return result\n";
30example::free($r);
31
32print "Good\n";
33
34
35
36
37
38