Provides a triple macro to construct static a target-lexicon Triple.
triple
```rust use targetlexicon::Triple; use targetlexicon_macros::triple;
const TARGET: Triple = triple!("x86_64-unknown-linux-gnu")
fn main() { dbg!(TARGET); } ```