>>> runResourceT $ Q.writeFile "hello.txt" "Hello world.\nGoodbye world.\n" >>> runResourceT $ Q.stdout $ Q.readFile "hello.txt" Hello world. Goodbye world. >>> runResourceT $ Q.appendFile "hello.txt" "sincerely yours,\nArthur\n" >>> runResourceT $ Q.stdout $ Q.readFile "hello.txt" Hello world. Goodbye world. sincerely yours, Arthur