Comments

Scripts may incorporate comments, either on lines by themselves or embedded in statements or commands. In both cases, the comment is identified by the comment command ("!"), and terminated by the end of the line. For example:

 !
 !Get next page.
 !
  SET conid = conid + 1       ! Update connection ID
  GET URL "http://abc.com" &  ! Get this URL
     ON conid &               ! use this TCP connection
     HEADER sub_header &      ! default headers
       , WITHOUT "Referer"    ! no referer

See also:

Overview of Script Control Language Syntax