#[surrealism(comment="Parses a string into a number")] fnparse_number(input: String)->Result<i64,String> { input.parse::<i64>().map_err(|e| e.to_string()) }
CLI examples
This file shows ways to work with module archives directly from the CLI.
# Scaffold a new module project surreal module init