I started reading emacs lisp intro. I haven’t seen any mentioning of data types. can anyone summarize datatypes in elisp with simple examples.?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Lisp fundamentally only has atoms and lists. Emacs has a wealth of editor-related special objects (characters, buffers, frames, markers, processes, keymaps, etc) some of which are implemented as lists or vectors (a special kind of list) but for a general overview, strings, numbers, symbols, and lists of these are probably all you need in order to get started.