mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-20 02:40:18 +00:00
8 lines
217 B
Rust
8 lines
217 B
Rust
|
|
use crate::config::PrintConfiguration;
|
||
|
|
use crate::context::Context;
|
||
|
|
use std::rc::Rc;
|
||
|
|
|
||
|
|
pub fn print(context: Rc<Context>, configuration: &PrintConfiguration) {
|
||
|
|
println!("{}", context.stamp(&configuration.text));
|
||
|
|
}
|