no_comment/
lib.rs

1#![doc(html_logo_url = "https://i.ibb.co/KzKy5DL/logo.png")]
2
3#[macro_use]
4extern crate derive_more;
5
6pub use without_comments::{IntoWithoutComments, WithoutComments};
7
8pub mod languages;
9mod without_comments;
10
11#[cfg(test)]
12mod tests;