On 2/6/07, phiroc at free.fr <phiroc at free.fr> wrote: > Hello, > > how would you convert Boolean triples to strings, in the IO function? > > printStrings :: (Bool,Bool,Bool) -> IO () Take a look at 'show': Prelude> show True "True" martin