Answers for "pascal comment"

1

pascal comments

(* Example comment *)
{ Second example comment }
// One line comment
You can have nested comments:
{ Comment 1 (* comment 2 *) }
(* Comment 1 { comment 2 } *)
{ comment 1 // Comment 2 }
(* comment 1 // Comment 2 *)
// comment 1 (* comment 2 *)
// comment 1 { comment 2 }
Posted by: Guest on January-14-2021

Browse Popular Code Answers by Language