0

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

Derek Mahar
  • 27,608
  • 43
  • 124
  • 174

2 Answers2

4

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.

rok
  • 2,574
  • 3
  • 23
  • 44
1

Block comment /* your code, may include LF CR */

Single line comment %

LF - line feed, CR - carriage return

Joundill
  • 6,828
  • 12
  • 36
  • 50