rl_lang/docs/entries/stdlib/term/term_print.rs
1use crate::docs::entry::FnEntry;
2
3pub static TERM_PRINT: FnEntry = FnEntry {
4 signature: "term_print(text)",
5 description: "writes text directly to the terminal without a trailing newline",
6 example: "get std::term::term_print\n\nterm_print(\"hello\")",
7 expected_output: None,
8 returns: "",
9 errors: None,
10 see_also: &[],
11 since: None,
12};