Hi All, In the following:
Example 3:
class PrintTest {
has Str $.Msg;
method PrintMsg() {
print "self = <" ~ self.Msg ~ ">\n";
print "self = <" ~ self.Str ~ ">\n";
}
}
my $x = PrintTest.new(Msg => "abc");
$x.PrintMsg
self = <abc>
self = <PrintTest<95224840>>
is "95224840" a C pointer? What is that thing?
Many thanks,
-T
