I hope this doesn't sound too crazy. One of the traditions of the Lisp language is that one can create custom languages. I've customized minor things of Emacs Lisp like creating aliases like: def -> defun. This way I can run code with functions created with "def" AND can also run existing code with "defun".
Where I am stuck is creating and additional symbol for comments. I would like to use an unicode character as an alternative to introduce comments (besides ";;") Could I use defalias? in that case I don't know how to write it. something like:
defalias -> ;;
On the other hand I've found this in Emacs source code: in the file lisp-mode.el one can find this assignment
(setq-local comment-start "; ")
But I don't know how to change the major mode. I mean, what I'd like is to use the new character besides the old one (";")