https://github.com/thehxdev/ocaml-practice
Solving some problems with Ocaml
https://github.com/thehxdev/ocaml-practice
ocaml
Last synced: about 2 months ago
JSON representation
Solving some problems with Ocaml
- Host: GitHub
- URL: https://github.com/thehxdev/ocaml-practice
- Owner: thehxdev
- Created: 2024-09-18T09:33:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-04T16:15:33.000Z (over 1 year ago)
- Last Synced: 2025-01-21T22:35:15.227Z (over 1 year ago)
- Topics: ocaml
- Language: OCaml
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ocaml-Practice
Just wanted to learn [Ocaml](https://ocaml.org) programming language. Take a look at [bin](bin) and [lib](lib) directories.
## Usage
Install Ocaml with [The official guide](https://ocaml.org/install#linux_mac_bsd). Then in the project root:
```bash
# build project
make
# run executable
make run
# enter utop (ocaml repl)
make utop
# clean
make clean
```