How do I get the Lisp Machine experience using Emacs? Should I set Emacs as my login shell?
M-x package-install exwm
(or install Squeak if you are a heretic)
You could add
exec emacs
to your .profile.
>>2
What's so heretical about Squeak? I have Squeak on my computer, but I have not had enough interest to explore the VM in detail.
>>4
It has syntax.
>>5
What's wrong with having syntax? Lisp too has an large amount of syntax! (e.g. format strings, loop macro, unquote-splicing is only valid for lists, '(.)
is an ill-formed dotted list, etc.).
According to Lisp syntax, this is invalid:
`(1 @2 . @3 4)
>>6 Typo correction:
`(1 ,@2 . ,@3 4)