2020-08-08 04:19:17 +02:00
|
|
|
use rhai::plugin::*;
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct Point {
|
|
|
|
x: f32,
|
|
|
|
y: f32,
|
|
|
|
}
|
|
|
|
|
2020-08-09 21:19:39 +02:00
|
|
|
#[export_fn(unknown = "thing")]
|
2020-08-08 04:19:17 +02:00
|
|
|
pub fn test_fn(input: Point) -> bool {
|
|
|
|
input.x > input.y
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let n = Point {
|
|
|
|
x: 0.0,
|
|
|
|
y: 10.0,
|
|
|
|
};
|
|
|
|
if test_fn(n) {
|
|
|
|
println!("yes");
|
|
|
|
} else {
|
|
|
|
println!("no");
|
|
|
|
}
|
|
|
|
}
|