git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
28 lines
386 B
Raku
Executable file
28 lines
386 B
Raku
Executable file
# file: example.pl
|
|
|
|
use example;
|
|
|
|
# Call our gcd() function
|
|
|
|
$x = 42;
|
|
$y = 105;
|
|
$g = example::gcd($x,$y);
|
|
print "The gcd of $x and $y is $g\n";
|
|
|
|
# Call the gcdmain() function
|
|
@a = ("gcdmain","42","105");
|
|
example::gcdmain(\@a);
|
|
|
|
# Call the count function
|
|
print example::count("Hello World", "l"),"\n";
|
|
|
|
# Call the capitize function
|
|
|
|
print example::capitalize("hello world"),"\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|