about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/tests/hello-world/src/main.rs
blob: 71c78d364ac881ee82c099892dd8c89b944b1d3f (plain)
1
2
3
4
5
use mylib::my_func;

fn main() {
    println!("{}", my_func(5, 10));
}