/// Removes comments and trims whitespace from a string.
////// Does not support escaped comments.
pubtraitStripComment{fnstrip_comment(&self)->&str;}implStripComment forstr{fnstrip_comment(&self)->&str{matchself.split_once('#'){Some((precomment,_))=> precomment.trim(),None=>self.trim(),}}}