A basic ASCII to Morse translator.
To execute the unit tests, run:
bash
dothyphen~ cargo test
As many others Rust crates you must use cargo to build DotHyphen
library.
bash
dothyphen~ cargo build --target x86_64-unknown-linux-gnu --release
Change the target if you want to build the crate to other platforms like Windows or macOS. Remove --release if you want a debug version. Remember, the build output will be placed in the root of the workspace. For example,
target/x86_64-unknown-linux-gnu/release/libdothyphen.rlib
Add dothyphen
as a dependency, then:
```rust use dothyphen::translate;
let translatedstring = translate("Hello World"); println!("{}", translatedstring); // Should print .... . .-.. .-.. --- / .-- --- .-. .-.. -.. ```
This crate follows the official documentation to be published into crates.io.