rune icon indicating copy to clipboard operation
rune copied to clipboard

Using multiple FormatArgs with a FillAllign duplicates content

Open SWW13 opened this issue 3 years ago • 0 comments

test.rn:

pub fn main() {
    println!("{:>} = {:>}", "AB", 0x1234);
    println!("{:>} = {:08}", "AB", 0x1234);
}
$ rune run test.rn
AB = AB4660
AB = 00AB4660

SWW13 avatar Aug 10 '22 23:08 SWW13