plugin-test-main 0.1.1

main application for the plugin-test experiment
1
2
3
4
5
6
7
use std::env;
use std::path::Path;

fn main() {
  let out_dir = env::var("OUT_DIR").expect("OUT_DIR is not defined");
  let dest_path = Path::new(&out_dir).join("english.rs");
}