Answers for "comment in pascal"

8

comment in pascal

//sinlge line comment

(*
  multi line comments
*) 

{  
   2nd method of multiline comments
}
Posted by: Guest on July-19-2020
0

comment in pascal

{ 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 June-11-2021

Browse Popular Code Answers by Language