Re: Remming
- Posted by DerekParnell (admin) May 04, 2009
- 881 views
doncole2009 said...
Hello,
I see that
--/*
Rems everything after it.
How do you unrem further down below it?
TIA
Don Cole
I assume by "remming" you "comment out".
Anyhow, no it doesn't. What makes you think that it does?
For example...
------------- --/* ? 3 ? 2 -------------
This displays
2on the screen. If it had commented everything after the firstline then I wouldn't see any output.
However this ... comments mutliple lines out ...
------------- -- /* ? 3 ? 2 */ -------------
To summarize:
Single line comments start with "--" and go to the end of the line. Multi-line comments start with "/*" and go until the next "*/", and they are not nestable.