"Comment"의 두 판 사이의 차이

87번째 줄: 87번째 줄:
==SQL==
==SQL==
[[category: SQL]]
[[category: SQL]]
*PostgreSQL
<source lang='sql'>
<source lang='sql'>
-- inline comment
-- inline comment

2015년 9월 24일 (목) 15:12 판

1 Bash

# comments
echo "Hello World!" # shows Hello World!

2 C

// inline comment
/* Comment */
/*
Comment
*/

3 C++

// inline comment
/* Comment */
/*
Comment
*/

4 C#

// inline comment
/* Comment */
/*
Comment
*/

5 CMD

REM comment

6 HTML

<!-- Comment -->

7 Lua

-- Comment

8 PHP

bash style + c style

# inline comment
// inline comment
/* Comment */
/*
Comment
*/

9 Python

# inline comment
"""
multiline Comment
"""

10 Ruby

# inline comment
=begin
multiline Comment
=end

11 SQL

  • PostgreSQL
-- inline comment
/*
Comment
*/

12 VB

inline only

'Comment
'Comment
Option Explicit
Private Sub Form_Load()
    MsgBox "Hello, World!" ' Comment
End Sub

13 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}