Comment In Pascal

[Solved] Comment In Pascal | Pascal - Code Explorer | yomemimo.com
Question : pascal comments

Answered by : lorenzo-satta-chiris

(* 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 }

Source : | Last Update : Thu, 21 Jan 21

Question : comment in pascal

Answered by : vikas

//sinlge line comment
(* multi line comments
*)
{ 2nd method of multiline comments
} 

Source : | Last Update : Sun, 26 Jul 20

Answers related to comment in pascal

Code Explorer Popular Question For Pascal