Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HW4 HASK17 Part C #3

Open
maxgonick opened this issue Oct 27, 2024 · 0 comments
Open

HW4 HASK17 Part C #3

maxgonick opened this issue Oct 27, 2024 · 0 comments

Comments

@maxgonick
Copy link

Part C of HASK17 gives the following C++ code

#import <vector>
using namespace std;

class Tree {
public:
  unsigned value;
  vector<Tree *> children;

  Tree(unsigned value, vector<Tree *> children) {
    this->value = value;
    this->children = children;
  }
};```

However I think the top line should be `#include` rather than `#import`. 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant