mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
252 B
Rust
18 lines
252 B
Rust
/**
|
|
* total lines in this file: 18
|
|
* of which code: 8
|
|
* of which only comments: 6
|
|
* of which blank: 4
|
|
*/
|
|
|
|
mod my_struct;
|
|
mod my_macro;
|
|
mod comments;
|
|
|
|
fn main() {
|
|
println!("Hello, world!");
|
|
|
|
my_struct::my_func();
|
|
my_macro::my_func();
|
|
}
|