Sign in
◑
Theme
chromium
/
external
/
github.com
/
mesonbuild
/
meson
/
refs/heads/upstream/fixboostpython
/
.
/
test cases
/
rust
/
2 sharedlib
/
prog.rs
blob: b34c34cb9696d77ce868294621d6bf78f00bbdc5 [
file
] [
edit
]
extern
crate stuff
;
extern
"C"
{
fn
not_so_rusty
()
->
i64
;
}
fn
main
()
{
println
!(
"printing: {} {}"
,
stuff
::
explore
(),
unsafe
{
not_so_rusty
()
});
}