Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8407129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T23:17:22+00:00 2026-06-09T23:17:22+00:00

When I try to run this code… module Main where import qualified Data.Text.Lazy.IO as

  • 0

When I try to run this code…

module Main where

import qualified Data.Text.Lazy.IO as LTIO
import qualified Data.Text.Lazy as LT
import System.IO (IOMode(..), withFile)

getFirstLine :: FilePath -> IO String
getFirstLine path =
        withFile path ReadMode (\f -> do
                contents <- LTIO.hGetContents f
                return ("-- "++(LT.unpack . head $ LT.lines contents)++" --"))

main::IO()
main = do
        firstLine <- getFirstLine "/tmp/foo.csv"
        print firstLine

I get

"-- *** Exception: Prelude.head: empty list

… where I would expect it to print the first line of “/tmp/foo.csv”. Could you please explain why? Ultimately, I’m trying to figure out how to create a lazy list of Texts from file input.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T23:17:23+00:00Added an answer on June 9, 2026 at 11:17 pm

    As Daniel Lyons mentions in a comment, this is due to IO and laziness interacting.

    Imagine, if you will:

    • withFile opens the file, to file handle f.
    • Thunk using contents of f is returned.
    • withFile closes the file.
    • Thunk is evaluated. There are no contents in a closed file.

    This trap is mentioned on the HaskellWiki / Maintaining laziness page.

    To fix, you can either read the whole file contents within withFile (possibly by forcing it with seq) or lazily close the file instead of using withFile.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to run this code on emulator: package andr.andr; import android.app.Activity; import android.content.Context;
When I try to run this code: import java.io.*; import java.util.*; public class TwoColor
When I try to run this code it will not insert the data into
When I try to run this code, I get incorrect maximums and minimums. Could
I have the given view and template code, when i try to run this
This Java code compiles fine, but when I try to run it I get:
Thanks in advance. This is my sample code. Whenever i try to run it
When I try to run this code in eclipse: (ns cl1 (def s 1)
This code returns me an error whenever I try to run this code. Can
Whenever I try to run this code: #Open file f = open(i.txt, r) line

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.