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:
@ -8,7 +8,7 @@ fn main() {
|
||||
}
|
||||
|
||||
fn move(n int, a string, b string) {
|
||||
println('Disc $n from $a to ${b}...')
|
||||
println('Disc ${n} from ${a} to ${b}...')
|
||||
}
|
||||
|
||||
fn hanoi(n int, a string, b string, c string) {
|
||||
|
Reference in New Issue
Block a user