Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

VARCHAR

fn main() -> sibyl::Result<()> {
use sibyl::Varchar;

let env = sibyl::env()?;

let txt = Varchar::from("Hello, World!", &env)?;

assert_eq!(txt.as_str(), "Hello, World!");
}