I am attempting to create a string using:
puts '["#{follower.screen_name}"]'
I want the output to be
["DailySanJose"]
where DailySanJose is the value of follower.screen_name. However, the current output is
["#{follower.screen_name}"]
Any help greatly appreciated.
putsdoes not create (return) a string. Do you want to create or output a string?