We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b22144 commit 1c3aaf0Copy full SHA for 1c3aaf0
ulisp.hpp
@@ -4671,16 +4671,6 @@ object* fn_eval (object* args, object* env) {
4671
return eval(first(args), env);
4672
}
4673
4674
-/*
4675
- (return [value])
4676
- Exits from a (dotimes ...), (dolist ...), or (loop ...) loop construct and returns value.
4677
-*/
4678
-object *fn_return (object *args, object *env) {
4679
- (void) env;
4680
- setflag(RETURNFLAG);
4681
- if (args == NULL) return nil; else return first(args);
4682
-}
4683
-
4684
/*
4685
(globals)
4686
Returns a list of global variables.
0 commit comments