What is the syntax for a block comment in the Oz programming language?
Asked
Active
Viewed 928 times
2 Answers
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
-
This worked for me in Mozart Engine 2.0.0-alpha.0+build.4091. – Derek Mahar Oct 19 '15 at 16:21
1
Block comment /* your code, may include LF CR */
Single line comment %
LF
- line feed,
CR
- carriage return

Joundill
- 6,828
- 12
- 36
- 50

João Pedro Gonçalves
- 21
- 1
- 1