7 lines
70 B
Rust
7 lines
70 B
Rust
|
fn# f() {
|
||
|
log "This is a bare function";
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
f();
|
||
|
}
|