What is Haskell\'s equivalent of
string str = string.Format(\"{0} {1}\",10,20); // C#
Is this what you are looking for?
printf "%d %d" 10 20
See Text.Printf.