|
[Date Index]
[Thread Index]
[Author Index]
Re: newbie Comment question
- To: mathgroup at smc.vnet.net
- Subject: [mg47035] Re: newbie Comment question
- From: Bill Rowe <readnewsciv at earthlink.net>
- Date: Mon, 22 Mar 2004 05:18:46 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
On 3/20/04 at 3:50 AM, janos.lobb at yale.edu (János) wrote:
>I have lines and lines of codes. Like
>line1;
>line2;
>line3;
>I would like to comment out line2 temporary. How do I do it
The comment delimiters in Mathematica are "(*" "*)" pairs. So
line1;
(* line2; *)
line3;
will execute as
line1;
line3;
--
To reply via email subtract one hundred and four
Prev by Date:
Re: newbie myHead question
Next by Date:
Re: MultipleListPlot and Lists of Lists
Previous by thread:
newbie Comment question
Next by thread:
Re: newbie Comment question
|