/* This is a file with block comments and line comments */

loop i=1 to 10      /* loop ten times */
  say i'...'        /* display progress */
  end i             /* end of the loop */

