Go to the first, previous, next, last section, table of contents.


コメント

C と同様 `/*'`*/' で囲まれた部分はコメントとして扱われる.

/*
 * This is a comment.
 */

def afo(X) {

コメントは複数行に渡っても構わないが, 入れ子にすることはできない. `/*' がいくつあっても最初のもののみが有効となり, 最初に現れた `*/' でコメントは終了したと見なされる. プログラムなどで, コメント を含む可能性がある部分をコメントアウトした場合には, #if 0, #endifを使えばよい. (See section プリプロセッサ.)

#if 0
def bfo(X) {
/* empty */
}
#endif


Go to the first, previous, next, last section, table of contents.