> the actual guile scheme documentation didn't seem to explain that syntax at all.
(quote data)
'data
Quoting is used to obtain a literal symbol (instead of a variable reference), a literal list (instead of a function call), or a literal vector. ' is simply a shorthand for a quote form. For example,
— <https://www.gnu.org/software/guile/manual/html_node/Expressi...>