dll

2005-06-08 Thread tomas . necas
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

auxiliary variables

2004-12-19 Thread tomas . necas
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.

operator

2005-01-29 Thread tomas . necas
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