mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vfmt: change all '$expr' to '${expr}' (#16428)
This commit is contained in:
@@ -18,8 +18,8 @@ fn main() {
|
||||
el := tag.children[1].children[0].children[0].children[0]
|
||||
href := el.attributes['href'] or { panic('key not found') }
|
||||
title := el.attributes['title'] or { panic('key not found') }
|
||||
println('href: $href')
|
||||
println('title: $title')
|
||||
println('href: ${href}')
|
||||
println('title: ${title}')
|
||||
println('')
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user