Message 1 of 2

Not applicable
07-01-2016
04:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have some string with lisp code
(setq str "(+ 2 3 4 5)") >str >"(+ 2 3 4 5)"
Or I have that
(setq code '(+ 2 3 4 5 6)) >code (+ 2 3 4 5 6) >(type code) LIST >(code) >wrong function : (+ 2 3 4 5 6)
So, how I can execute lisp code from variable?
Solved! Go to Solution.