Hi,
Please evaluate the following four Lisp forms one by one:
(defun hello-world ()
"Hello World")
(hello-world)
(byte-compile 'hello-world)
(hello-world)
I got the string "Hello World" by the second form, but nil by
the fourth form. I am at a loss for words...