Open das-g opened 2 months ago
@das-g Fair point.
I would like to be as concise as possible here, without delving too much into Lisp.
What about writing something like:
The
'
beforepackage
tells Emacs to considerpackage
as a literal value, rather than evaluating it as a variable.
What do you think?
What about writing something like:
The
'
beforepackage
tells Emacs to considerpackage
as a literal value, rather than evaluating it as a variable.What do you think?
Sounds good. Maybe even shorter:
This is equivalent to JS'
require
or Python's / Java'simport
.package
is the Emacs' built-in package manager and'
indicates that name is a literal, not a variable to be evaluated.
https://github.com/arialdomartini/stairway-to-emacs/blob/55c1fe3cb8ab6a899183e066c14f702e60494925/002-use-package.org?plain=1#L55
Maybe it's also worth explaining here what
'
is or does in this context?