Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
cc09f18e3bd415740aef36c100c8c59378947344
/
.
/
examples
/
bindgen
/
main.rs
blob: fb93ce4a76a902178b50ec55922470d267a44043 [
file
] [
log
] [
blame
]
fn
main
()
{
println
!(
"The value is {}!"
,
simple_bindgen
::
SIMPLE_VALUE
);
}
#[
cfg
(
test
)]
mod
test
{
#[
test
]
fn
do_the_test
()
{
assert_eq
!(
42
,
simple_bindgen
::
SIMPLE_VALUE
);
}
}