blob: fb93ce4a76a902178b50ec55922470d267a44043 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001fn main() {
2 println!("The value is {}!", simple_bindgen::SIMPLE_VALUE);
3}
4
5#[cfg(test)]
6mod test {
7 #[test]
8 fn do_the_test() {
9 assert_eq!(42, simple_bindgen::SIMPLE_VALUE);
10 }
11}