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 240231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:38:57+00:00 2026-05-11T20:38:57+00:00

I’m trying to work through an example in Expert F# , which is based

  • 0

I’m trying to work through an example in Expert F#, which is based on v1.9.2, but the CTP releases after that have changed enough that some of them don’t even compile anymore.

I’m running into some trouble with listing 13-13. Here’s the snippet of the urlCollector object definition:

let urlCollector =
    MailboxProcessor.Start(fun self ->
        let rec waitForUrl (visited : Set<string>) =
            async { if visited.Count < limit then
                        let! url = self.Receive()
                        if not (visited.Contains(url)) then
                            do! Async.Start
                                (async { let! links = collectLinks url
                                         for link in links do
                                         do self <-- link })

                        return! waitForUrl(visited.Add(url)) }

            waitForUrl(Set.Empty))

I’m compiling with Version 1.9.6.16, and the compiler complains thusly:

  1. incomplete structured construct at or before this point in
    expression [after the last paren]
  2. error in the return expression for this ‘let’. Possible incorrect indentation [refers to the let defining waitForUrl]

Can anyone spot what’s going wrong here?

  • 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-05-11T20:38:58+00:00Added an answer on May 11, 2026 at 8:38 pm

    It looks like the last line needs to be unindented 4 spaces.

    EDIT: actually, it looks like there’s more going on here. Assuming this is the same sample as here, then here’s a version I just modified to be in sync with the 1.9.6.16 release:

    open System.Collections.Generic
    open System.Net
    open System.IO
    open System.Threading
    open System.Text.RegularExpressions
    
    let limit = 10    
    
    let linkPat = "href=\s*\"[^\"h]*(http://[^&\"]*)\""
    let getLinks (txt:string) =
        [ for m in Regex.Matches(txt,linkPat)  -> m.Groups.Item(1).Value ]
    
    let (<--) (mp: MailboxProcessor<_>) x = mp.Post(x)
    
    // A type that helps limit the number of active web requests
    type RequestGate(n:int) =
        let semaphore = new Semaphore(initialCount=n,maximumCount=n)
        member x.AcquireAsync(?timeout) =
            async { let! ok = semaphore.AsyncWaitOne(?millisecondsTimeout=timeout)
                    if ok then
                       return
                         { new System.IDisposable with
                             member x.Dispose() =
                                 semaphore.Release() |> ignore }
                    else
                       return! failwith "couldn't acquire a semaphore" }
    
    // Gate the number of active web requests
    let webRequestGate = RequestGate(5)
    
    // Fetch the URL, and post the results to the urlCollector.
    let collectLinks (url:string) =
        async { // An Async web request with a global gate
                let! html =
                    async { // Acquire an entry in the webRequestGate. Release
                            // it when 'holder' goes out of scope
                            use! holder = webRequestGate.AcquireAsync()
    
                            // Wait for the WebResponse
                            let req = WebRequest.Create(url,Timeout=5)
    
                            use! response = req.AsyncGetResponse()
    
                            // Get the response stream
                            use reader = new StreamReader(
                                response.GetResponseStream())
    
                            // Read the response stream
                            return! reader.AsyncReadToEnd()  }
    
                // Compute the links, synchronously
                let links = getLinks html
    
                // Report, synchronously
                do printfn "finished reading %s, got %d links" 
                        url (List.length links)
    
                // We're done
                return links }
    
    let urlCollector =
        MailboxProcessor.Start(fun self ->
            let rec waitForUrl (visited : Set<string>) =
                async { if visited.Count < limit then
                            let! url = self.Receive()
                            if not (visited.Contains(url)) then
                                Async.Start 
                                    (async { let! links = collectLinks url
                                             for link in links do
                                                 do self <-- link })
                            return! waitForUrl(visited.Add(url)) }
    
            waitForUrl(Set.Empty))
    
    urlCollector <-- "http://news.google.com"
    // wait for keypress to end program
    System.Console.ReadKey() |> ignore
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 176k
  • Answers 176k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Is your ASP.NET application regularly encountering thread aborts (from other… May 12, 2026 at 3:21 pm
  • Editorial Team
    Editorial Team added an answer This is a good start: The Absolute Minimum Every Software… May 12, 2026 at 3:21 pm
  • Editorial Team
    Editorial Team added an answer In a layered view of your system, it looks like… May 12, 2026 at 3:21 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.