This is an old version, view current version.

3.1 Line-based comments

Any characters on a line following two forward slashes (//) is ignored along with the slashes. These may be used, for example, to document variables,

data {
  int<lower=0> N;  // number of observations
  array[N] real y;  // observations
}