I know this sound very simple, but I failed to combine two strings into a new one.
The IO String "a" from a gtk entry is fetched by
a <- (entryGetText text_field)
The goal is to combine it like:
newstring = "Text: "+a
Any ideas to accomplish that? Thanks!
newstring <- fmap ("Text: " ++) $ entryGetText text_field