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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:13:25+00:00 2026-05-28T05:13:25+00:00

I have defined a module in a file mod.ml as follows: module Area =

  • 0

I have defined a module in a file mod.ml as follows:

module Area = struct
  ...
  let test : unit =
    Print.printf "haha"
  ...
end;;

Print.printf "hehe";;

Area.test

It seems that without ;; after end, I can not compile the code by ocamlc. But it looks strange to me to have ;; in a Ocaml file, do I have to keep them?

After generating mod by ocamlc, I launch mod, it prints hahahehe. It seems that haha is printed by the definition of let test : unit ... instead of its call Area.test. What I except as a result is hehehaha or hahahehehaha. Could anyone explain why it is not what I expected?

  • 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-28T05:13:26+00:00Added an answer on May 28, 2026 at 5:13 am

    I never use ;; in my source files, I think of it as part of the top-level interface. For your code I would probably write:

    module Area = struct
      let test : unit -> unit =
          fun () -> Printf.printf "haha"
    end
    
    let () =
        Printf.printf "hehe";
        Area.test ()
    

    For what it’s worth, Area.test as you have defined it is not a function, it’s just a unit value with a side effect during its computation. In my code here I’ve changed it to a function of type unit -> unit.

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

Sidebar

Related Questions

I have a file context.ml where a map is defined module CtxMap = Map.make(struct
I have defined a GWT module that includes an external javascript file using tag.
If I have a JMS module defined in a file (my-module-jms.xml) copied from one
I have a defined idl file, which looks like this: module Banking { typedef
I have defined the global nls_date_format on Oracle 10.2 XE as follows: alter system
I want to write unit tests for a module file I created and put
I have defined a Point object in a file Point.pm as following: package Point;
I have defined the name of my wrapper object in my c file blargUtils.c
First part: call F# from F# Let's say we have the following type defined
I have defined an XMLList which gets its data from the following XML file:

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.