コメント Comment Type
Format
// 一行のコメント / / Comment line
/* / *
複数行のコメント Multi-line comments
*/ * /
Commentary
コメント、注釈です。 Comments and annotations. コメント部分は無視され実行されません。 Comments will not run in the cold. //は行末までをコメントとし、/*~*/は囲まれた範囲をコメントとします。 / / Is a comment and will comment until the end ,/*~*/ enclosed area.
サンプルコード Sample code
// ここはコメントです。 / / This is a comment.
a = 12; a = 12;
/* / *
複数行のコメントです。 Is a multi-line comments.
a = 34; a = 34;
*/ * /
outputs[0] = a; outputs [0] = a;