# GmPro A Gleam parser for ChordPro files (the name is a silly pun on the G minor chord lol) So far it lives inside the [netzpevnik](https://gitea.ledoian.cz/LEdoian/netzpevnik) repository, when it becomes reasonably usable, I will probably move it to a dedicated repository. (Git submodules are not so comfy while developing both projects…) ```sh gleam add gmpro@1 ``` ```gleam import gmpro pub fn main() { // TODO: An example of the project in use } ``` ## Development ```sh #gleam run # Run the project – does nothing gleam test # Run the tests (TODO: someone write those!) gleam run -m gmpro/demo # Run a trivial demo that uses the library ```