- #include "SpreadsheetCell.h"
- #include <iostream>
- using namespace std;
- int main(int argc, char** argv)
- {
- SpreadsheetCell myCell, anotherCell;
- myCell.setValue(6);
- anotherCell.setValue(myCell.getValue());
- cout << "cell 1: " << myCell.getValue() << endl;
- cout << "cell 2: " << anotherCell.getValue() << endl;
- return (0);
- }
English
