Upon configuring babel, encounter such syntax
(require 'ob-ipython)
(org-babel-do-load-languages
'org-babel-load-languages
'((ipython . t)
(python . t)
(shell . t)
;; other languages..
))
What's the difference between (setq shell t)
and (shell . t)
(setq shell t)
is code (setting a variable) and(shell . t)
is data, so other than the text containing many of the same characters, there's barely anything similar about them. – phils Jun 22 '19 at 11:41