|
Go to the first, previous, next, last section, table of contents.
コメントC と同様 `/*' と `*/' で囲まれた部分はコメントとして扱われる. /* * This is a comment. */ def afo(X) {
コメントは複数行に渡っても構わないが, 入れ子にすることはできない.
`/*' がいくつあっても最初のもののみが有効となり, 最初に現れた
`*/' でコメントは終了したと見なされる. プログラムなどで, コメント
を含む可能性がある部分をコメントアウトした場合には, #if 0 def bfo(X) { /* empty */ } #endif Go to the first, previous, next, last section, table of contents. |