pub fn skip_comment_or_empty(line: &str) -> boolExpand description
What: Check if a line should be skipped (empty or comment).
Inputs:
line: Line to check
Output:
trueif the line should be skipped,falseotherwise
Details:
- Skips empty lines and lines starting with
#,//, or;