rust-parser-combinator/src/representation.rs

13 lines
182 B
Rust

#[derive(Debug)]
pub struct Representation {}
impl Representation {
pub fn show(&self) {
println!("Not done");
}
pub fn new() -> Self {
Self {}
}
}