pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str>
Removes block comments from the given Vec of lines.
Vec
without_block_comments(vec!["/*", "foo", "*/"]); // => vec![] without_block_comments(vec!["bar", "/*", "foo", "*/"]); // => vec!["bar"]