Test whether the string represents a comment.
assert( isComment("# Comment")); assert( isComment(" # Comment")); assert(!isComment("Not comment")); assert(!isComment(""));
See Implementation
Test whether the string represents a comment.