-
Notifications
You must be signed in to change notification settings - Fork 66
Support for grader code reuse #169
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
Comments
As far as I know, there is no way to do that in the current version. This is a good idea! Thanks! |
I agree, it could be great to have this instead of copy-pasting everything all the time. |
On a related note, it would be nice if a grader could access certain common OCaml libraries (perhaps taken from a fixed set; or, ideally, declared by the grader itself). I am thinking for instance of |
Another library that I would like to use is |
We have a lot of functions that we are using repeatedly across graders for different exercises. Currently we have to just copy and paste those functions into
test.ml
for each grader since we don't have control over the build. It would be very nice if we could just put all this code into a separate module and link it during compilation.(Maybe there is already a way to do this, but if there is, I'm not sure how.)
The text was updated successfully, but these errors were encountered: