言語アラカルト

言語別コメントアウト方法のメモ

☆言語別コメントアウト方法のメモを書いておく C言語 // {line_comment} /* {lines_comment} */ HTML JavaScript // {line_comment} /* {lines_comment} */ Perl # {line_comment} PHP // {line_comment} /* {lines_comment} */ Ruby # {line_comment} =beg…

HELLO,WORLD(言語アラカルト)

いろんな言語でHELLO,WORLD書いてみる。===== C言語 ===== #includeint main(void){ printf("HELLO,WORLD\n"); return 0; } ===== C++ ===== #include using namespace std;int main(){ cout return 0; } ===== javascript ===== <script> document.write("…