mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-02 11:18:14 +08:00
10 lines
150 B
Rust
Executable File
10 lines
150 B
Rust
Executable File
extern "C" {
|
|
fn abs(input: i32) -> i32;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {
|
|
println!("Absolute value of -3 according to C: {}", abs(-3));
|
|
}
|
|
}
|