semilattice-script

Example

```rust use chrono::TimeZone; use wild_doc::*;

let dir="./wd-test/"; if std::path::Path::new(dir).exists(){ std::fs::removedirall(dir).unwrap(); std::fs::createdirall(dir).unwrap(); }else{ std::fs::createdirall(dir).unwrap(); } let mut wd=WildDoc::new( dir ,IncludeLocal::new("./include/") ).unwrap();

//update data. wd.exec(r#" Noah US Liam US Olivia UK "#);

//select data. let r=wd.exec(r#"

find persons.
"#); println!("{}",r);

//seaech data let r=wd.exec(r#"

find persons from the US.
"#); println!("{}",r);

//use javascript let r=wd.exec(r#" const ymd=function(){ const now=new Date(); return now.getFullYear()+"-"+(now.getMonth()+1)+"-"+now.getDate(); }; const uk="UK";

find persons from the .
"#); println!("{}",r);

//search in update section. wd.exec(r#" hoge: Renamed "#); let r=wd.exec(r#"

find persons.
"#); println!("{}",r);

```