If you're thinking of something like save-lisp-and-die from CL, then no.
> 2 - Suppose that I made a function and now I want change it or just
> see your definition, Is it possible to list or see a function
> definition on REPL, something like DIR?
You can find function definitions with (find-doc) and the various ns
utilities, but you're not going to be able to get the source, as it is
compiled away and Clojure knows nothing about it.
Both of these make a pretty good case for doing what Rich does, and
using SLIME, hacking in a buffer called tmp.clj, and evaluating
interactively to the REPL rather than typing directly in it.
It's not something I've seen documented anywhere. But it's a handy
technique. Basically, you open a file in emacs called whatever you
want. I call mine tmp.clj. Then you type commands there instead of in
the REPL, and use either C-x C-e (slime-eval-last-sexp) or C-M-x
(slime-eval-defun) to evaluate the expressions in the tmp.clj buffer
into the REPL.
This has two benefits: First, you have history, so it's easy to go
back and do what you did before [1]. Second, you have all the benefits
of the editor when you're authoring your commands, like paredit, if
you're a paredit sort of person.
[1] Now that I think about it, I believe there's a way to save the
command history from the REPL. Not the same thing as
save-lisp-and-die, of course.