rl_lang/docs/entries/stdlib/rl/rl_version.rs
1use crate::docs::entry::FnEntry;
2
3pub static RL_VERSION: FnEntry = FnEntry {
4 signature: "rl_version()",
5 description: "returns the version of the rl-lang interpreter currently running",
6 example: "get std::rl::rl_version\n\nrl_version() // \"0.1.4\"",
7 expected_output: None,
8 returns: "string",
9 errors: None,
10 see_also: &[],
11 since: None,
12};