I'm using this. What other ways are there?
(let ((minver "28.2"))
(when (version< emacs-version minver)
(error "This config requires Emacs v%s or higher." minver)))
;; Load the Emacs Lisp code blocks embedded in the literate Org file
(org-babel-load-file (expand-file-name "~/.emacs.d/custom-init.org"))
I want to do do the check in init.el
before the literate configuration loads.