Add quote special form

This commit is contained in:
2022-11-04 22:03:47 -04:00
parent 2344a7d498
commit 2527c34ddf
3 changed files with 6 additions and 2 deletions

View File

@@ -101,3 +101,7 @@ struct ucl_object *ucl_special_setq(struct ucl_state *state, struct ucl_object *
struct ucl_object *ucl_special_progn(struct ucl_state *state, struct ucl_object *args) {
return ucl_progn(state, args);
}
struct ucl_object *ucl_special_quote(struct ucl_state *state, struct ucl_object *args) {
return ucl_car(args);
}