_Comment_Lines_Example
Â
Comments Example
// The single line comment stays entirely on one line.
stage() // It may even appear on the same line as executable code,
{ Â Â Â Â // but only to the RIGHT of the executable code.
source: 'DATA_TO_STAGE',
target-table: 'TABLE_IN_THE_DATABASE'
}
Â
/* The multi-line comment, however, may appear
  on several contiguous lines.
  You're welcome! In case you were thinking, "Thank you!"
*/
Â
Â