(→HTML) |
(→SQL) |
||
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
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