On Sun, Aug 15, 2010 at 04:40:09PM +0200, Csürke Tamás wrote:
hi, How can i write this java code in pike: Int a; this->a = 7; So what is the "this" in pike?
"this" in pike is the same, but in most cases it is not needed. you would just write
int a; a = 7;
or even
int a = 7;
greetings, martin.