What is Haskell\'s equivalent of
string str = string.Format(\"{0} {1}\",10,20); // C#
Alternatively you could write
unwords [show 10, show 20]
or even
unwords (map show [10, 20])