Comment Syntax: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
m (Removed protection from "Comment Syntax")
mNo edit summary
Line 63: Line 63:
MySQL configuration file
MySQL configuration file
<pre>
<pre>
#single line comment
# single line comment


-- single line comment. Note there are one space between '--' with 'single line comment'.
-- single line comment. Note there are one space between '--' with 'single line comment'.
Line 76: Line 76:
Perl Code<ref>[http://www.tizag.com/perlT/perlsyntax.php perl - syntax]</ref>:
Perl Code<ref>[http://www.tizag.com/perlT/perlsyntax.php perl - syntax]</ref>:
<pre>
<pre>
#single line comment
# single line comment
</pre>
</pre>


Line 112: Line 112:


<pre>
<pre>
#single line comment
# single line comment
</pre>
</pre>


Line 120: Line 120:
[http://groups.csail.mit.edu/uid/sikuli/ SIKULI] Code: ({{exclaim}} multiple line comment is not supported for SIKULI IDE 1.x[https://bugs.launchpad.net/sikuli/+bug/585342])
[http://groups.csail.mit.edu/uid/sikuli/ SIKULI] Code: ({{exclaim}} multiple line comment is not supported for SIKULI IDE 1.x[https://bugs.launchpad.net/sikuli/+bug/585342])
<pre>
<pre>
#single line comment
# single line comment
</pre>
</pre>



Revision as of 16:54, 5 November 2019

程式或網站服務設定檔的註解語法 (Comment syntax for programming languages or server configuration file) << Testing

A: Apache config

Configuration Files - Apache HTTP Server Version 2.4

# single line comment


B: Bash (shell script)

Bash (Unix shell)

# single line comment

C: CSS

CSS Code: viewable when user view the HTML source code[1]

/* multiple lines
comments
*/

Conditional Comments for IE Browser msie.png

D: DOS

DOS Command Code[2]:

REM [comment]
ex: REM single line comment

H: HTML

HTML Code: viewable when user view the HTML source code

<!-- This is an HTML Comment -->

<!-- multiple 
lines -->

J: Javascript, Java, JSP

Javascript Code: viewable when user view the HTML source code

//single line comment

/* multiple 
lines
*/


Java[3] & JSP[4]

//single line comment

/* multiple 
lines
*/

M: MySQL

MySQL configuration file

# single line comment

-- single line comment. Note there are one space between '--' with 'single line comment'.

/* multiple
   lines
   comments
*/

P: Perl, PHP, Python

Perl Code[5]:

# single line comment


PHP Code: not viewable when user view the HTML source code[6]

# single line comment
// another single line comment

/* multiple 
lines
*/


php.ini

; single line comment

Python: The IPython Notebook[7][8]

# single line comment
'''
This is the multiline
comments.
'''

R

R: The R Project for Statistical Computing: Commenting Guidelines

# single line comment

Multiline lines comment : Use RStudio (Editing and Executing Code – RStudio Support) to comment/uncomment the selected code. r - Multiline Comment Workarounds? - Stack Overflow

S: SIKULI, SQL

SIKULI Code: (Icon_exclaim.gif multiple line comment is not supported for SIKULI IDE 1.x[1])

# single line comment

SQL Command / MySQL 5.1 Comment Syntax:

-- single line comment

/* multiple 
lines
*/

V: VBScript

VBScript Coding Conventions, VBScript Tutorial - Operators

' single line comment

X: XML

XML Code[9] [10]:

<!--
	multiple lines
-->

References

further reading