pub fn parse(_source: &str) -> Result<Expr>
Parse Fermata source code into an AST.
let ast = fermata::parse("(note c4 :q)")?;
Returns Error::Parse if the source contains syntax errors.
Error::Parse