rune 0.14.2

The Rune Language, an embeddable dynamic programming language for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
prelude!();

#[test]
fn test_not_used() {
    let _: () = rune! {
        0;
        4.1;
        'a';
        b'a';
        "Hello World";
        b"Hello World";
        [1, 2, 3];
        (1, 2, 3, 4);
        #{"foo": 42, "bar": [1, 2, 3, 4]};
    };
}