diff --git a/src/pebblisp.c b/src/pebblisp.c index 5f9d220..48122d7 100644 --- a/src/pebblisp.c +++ b/src/pebblisp.c @@ -618,7 +618,7 @@ void repl(struct Environment* env) free(oldBuf); } Object o = parseEval(buf, env); - if (isError(o, DID_NOT_FIND_SYMBOL)) { + if (isFuncy(o) || isError(o, DID_NOT_FIND_SYMBOL)) { cleanObject(&o); system(buf); free(buf);