git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10242 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
205 B
Raku
12 lines
205 B
Raku
use char_strings;
|
|
|
|
my $val1 = "100";
|
|
if (char_strings::CharPingPong($val1) != "100") {
|
|
die "failed";
|
|
}
|
|
|
|
my $val2 = "greetings";
|
|
if (char_strings::CharPingPong($val2) != "greetings") {
|
|
die "failed";
|
|
}
|
|
|