Function callisp::special_forms::quote

source ·
pub fn quote(args: Vec<Ast>, _env: &mut Environment) -> Result<Ast, LispError>
Expand description

Quote a lisp value.

Example: (define a 3) (quote a) => a returns a instead of returning the defined value of a.