So simple question, i'm not sure which function would be best to do this. How do you add a string to each item in a list? So example:
(setq list '("Sample Data" "More Fun"))
And then say I want to add " is great." to each item in my list so it reads:
(print list)
"Sample Data is great."
"More Fun is great."