exercism-ocaml/hello-world/HELP.md

36 lines
1.5 KiB
Markdown
Raw Normal View History

2024-01-13 12:19:21 +01:00
# Help
## Running the tests
A `Makefile` is provided with a default target to compile your solution and run the tests. At the command line in your exercise's directory, type:
```bash
make
```
## Submitting your solution
You can submit your solution using the `exercism submit hello_world.ml` command.
This command will upload your solution to the Exercism website and print the solution page's URL.
It's possible to submit an incomplete solution which allows you to:
- See how others have completed the exercise
- Request help from a mentor
## Need to get help?
If you'd like help solving the exercise, check the following pages:
- The [OCaml track's documentation](https://exercism.org/docs/tracks/ocaml)
- The [OCaml track's programming category on the forum](https://forum.exercism.org/c/programming/ocaml)
- [Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5)
- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)
Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.
To get help if you're having trouble, you can use one of the following resources:
- [Documentation for the Standard Library](http://caml.inria.fr/pub/docs/manual-ocaml/libref/index.html)
- [/r/ocaml](https://www.reddit.com/r/ocaml) is the OCaml subreddit.
- [StackOverflow](http://stackoverflow.com/questions/tagged/ocaml) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.