rune
rune copied to clipboard
Using multiple FormatArgs with a FillAllign duplicates content
test.rn:
pub fn main() {
println!("{:>} = {:>}", "AB", 0x1234);
println!("{:>} = {:08}", "AB", 0x1234);
}
$ rune run test.rn
AB = AB4660
AB = 00AB4660