// // Created by jim on 4/4/17. // #include "Rectangle.h" int main() { Rectangle* rec = new Rectangle(20, 10); rec->area(); return 0; }