7 lines
90 B
Rust
7 lines
90 B
Rust
fn some_function() {
|
|
println!("some function");
|
|
}
|
|
|
|
fn main() {
|
|
some_function();
|
|
}
|