mirror of
https://github.com/rm-dr/daisy
synced 2025-04-04 04:18:02 -07:00
12 lines
188 B
Rust
12 lines
188 B
Rust
use super::FormattedText;
|
|
|
|
impl FormattedText {
|
|
pub fn newline() -> Result<(), ()> {
|
|
print!("\n");
|
|
return Ok(());
|
|
}
|
|
|
|
pub fn write(&self) -> String {
|
|
return self.text.clone();
|
|
}
|
|
} |