Rules for Comments

  • Comment lines are denoted with:  # 
  • Comment blocks start with blank row, then leading and trailing # rows
  • Each file includes comment with file name at top of file


Example:

#

# Energy Requirements Removed due to Program

#

for year in years, area in areas, ec in ecs, tech in techs

  ...

end


#

# Comment has blank row preceding. Comments are padded with leading and trailing # rows.

#

for year in years, area in areas, ec in ecs, tech in techs

  ...

end