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
prelude!();

#[test]
pub fn test_bug_428() {
    let (a, b): (String, String) = rune! {
        let a = format!("{:>} = {:>}", "AB", 0x1234);
        let b = format!("{:>} = {:08}", "AB", 0x1234);
        (a, b)
    };

    assert_eq!(a, "AB = 4660");
    assert_eq!(b, "AB = 00004660");
}