home *** CD-ROM | disk | FTP | other *** search
- /*
- demonstrate inheritance of a base class
- */
- inherit(Int,Myint,[]);
-
- /*
- demo
- */
- v = new(Myint,1);
- ? "v is ",v; % inherit the asString method from Int
- ? "v + 1 = ",v+1; % inherit the + operator from Int
- ? "v - 1 = ",v-1; % inherit the - operator from Int
- ? "parent of v is ",parent(v);
-