;; -*- mode: org; -*- Elisp now alows comments without ;. ' can also use start literal comments with # also works * Some elisp here (setq emacs-lisp-allow-literal-comments t) (setq byte-compile-allow-literal-comments t) (message "I can now run simple elisp on my own!") * More stuff here #+BEGIN_SRC emacs-lisp (message "Hello, World!") #+END_SRC It is of course possible to intertwene code with comments anywhere in the file. (message "Hello Again!") Of course we can also comment-out code just as before: ;;(message "I am silent") In code blocs the ';' is still a comment delimiter: (message ;; Here is a line comment "I am a bit chatty today!") That's it for today folks! (message "Bye bye cruel world!")