Answers for "pascal comments"

8

comment in pascal

//sinlge line comment

(*
  multi line comments
*) 

{  
   2nd method of multiline comments
}
Posted by: Guest on July-19-2020
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