
4 Oct
2010
4 Oct
'10
3:41 a.m.
mention_only_once file action = do want [file] file *> action
main = mention_only_once "file1" $ \x -> do need ["file2"] putStrLn "Hello" putStrLn "World"
Thanks Bulat .... I guess even this should work - main = do let file1="file1" want [file1] file1 *> \x -> do need ["file2"] putStrLn "Hello" putStrLn "World" -- Regards, Kashyap