Skip to main content
edited tags; edited tags
Link
Drew
  • 80.9k
  • 10
  • 125
  • 265
Source Link

Adding string to each item in list?

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."