another vfmt2 fix

pull/4181/head
Alexander Medvednikov 2020-04-01 18:25:05 +02:00
parent f657c4b514
commit 30f306dc1a
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ fn main() {
i := 123
a := 'abc'
b := 'xyz'
c := 'a: $a b: $b i: $i'
e := 'a: $a b: $b i: $i'
d := 'a: ${a:5s} b: ${b:-5s} i: ${i:20d}'
println('a: $a $b xxx')
eprintln('c: $c .')
eprintln('e: $e')
println(d)
}