Name: Anonymous 2013-02-17 5:33
implement a -flexible- interpreter ? ( being able to modify 'target' code while running? (lispy =) )
class point {
private:
int X;
int Y;
public:
point (int XX, int YY) { X=XX; Y=YY; }
int x () { return X; }
int y () { return Y; }
metric () { return sqrt(X^2+Y^2); }
point operator + (P) { return pow(P.x(),2)+pow(P.y(),2); }
};