bullet 0.1.2

Supersonic Math
1
2
3
4
5
6
7
8
9
10
extern crate bullet;

use bullet::builder::Builder;
use bullet::vm::simd;

fn main() {
    let b = Builder::new();
    let e = b.parse("sin(x)").unwrap();
    println!("{}", simd::simd_asm(&[e], &["x"]));
}