use text_grid::*;
fn main() {}
pub fn f_ok() {
let s = String::from("ABC");
let s = &s;
let _cell_a = cell!("{}", s);
let _cell_b = cell!("{}", s); }
pub fn f_write() {
use std::fmt::Write;
let s = String::from("ABC");
let _cell_a = cell_by(|f| write!(f, "{}", &s));
let _cell_b = cell_by(|f| write!(f, "{}", &s));
}
pub fn f_format() {
let s = String::from("ABC");
let _cell_a = cell(format!("--{}--", &s));
let _cell_b = cell(format!("--{}--", &s));
}