Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
966678bf1772bb059ae1c51e460b9054a9bf858d
/
.
/
examples
/
ios
/
demo.rs
blob: 37b75877e2ac835aa2afc1bfc638b8ef768620da [
file
] [
log
] [
blame
]
#[
no_mangle
]
pub
extern
fn
print_something_from_rust
()
{
println
!(
"Ferris says hello!"
);
}
#[
no_mangle
]
pub
extern
fn
get_a_value_from_rust
()
->
i32
{
42
}