Search code examples
commentsoz

What is the syntax for a block comment in the Oz programming language?


What is the syntax for a block comment in the Oz programming language?


Solution

  • I can't find it in the Oz documentation, but according to the book "Concepts, Techniques, and Models of Computer Programming" (PETER VAN ROY) this is the syntax:

    /*
    this is a
    block
    comment
    */
    

    Just tried, works perfectly.