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