#![deny(warnings)]
#![warn(rust_2018_idioms)]
#[macro_use]
extern crate log;
use map_to_const::*;
use std::collections::HashMap;
fn main() {
sensible_env_logger::init!();
let my_map = HashMap::from([("hello", "world"), ("testing", "123")]);
let const_value = map_to_const(&my_map, "my const name");
trace!("Result:");
trace!("---");
trace!("{const_value}");
}