Please
Lets have two scalars variables in Perl and some operation under
them like an adding.
x = a + b
I would like know, witch auxiliary variables are creating
on the in-line code like a Parrot
somethink like T = a + b
x = T ???
and on witch circumstances depends it.
Please,
I have a question if exists in Perl somethink like keyword
'operator' in C++ ?
for example we can write in C++ :
class A {
A() { printf("Constructor of object class A\n"); }
~A() { printf("Destructor of object class A\n"); }
};
A &operator + (A &a1, A &a2) { printf("Addition\n"); }
A &ope
Please
how can I call C++ from Perl in code? I can not find how to
complete same dll library or some like this. thanks Tomas