1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

another vfmt2 fix

This commit is contained in:
Alexander Medvednikov 2020-04-01 18:16:56 +02:00
parent 3ef6436bef
commit f657c4b514

View File

@ -8,8 +8,6 @@ fn main() {
c := 'a: $a b: $b i: $i'
d := 'a: ${a:5s} b: ${b:-5s} i: ${i:20d}'
println('a: $a $b xxx')
// QTODO
//eprintln('c: $c')
eprintln('c: $c .')
println(d)
}