mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00
12 lines
107 B
Rust
12 lines
107 B
Rust
![]() |
// -*- rust -*-
|
||
|
|
||
|
fn f(str caller) {
|
||
|
log caller;
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
ret f("main");
|
||
|
log "Paul is dead";
|
||
|
}
|
||
|
|