Newer Version Available
Comments
Two sequential hyphens (--) indicate the beginning of a single-line comment in SAQL.
You can put a comment on its own
line:
1--Load a data stream.
2a = load "myData";You can put a comment at the end of a
line:
1a = load "myData"; --Load a data stream.You can comment out a SAQL
statement:
1--The following line is commented out:
2--a = load "myData";