Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-30T19:08:15.000Z (2 months ago)
- Last Synced: 2024-10-30T20:20:57.444Z (2 months ago)
- Topics: ocaml
- Language: OCaml
- Homepage:
- Size: 5.86 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
```