mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fmt: remove space in front of ? and ! (#14366)
This commit is contained in:
@ -28,7 +28,7 @@ fn main() {
|
||||
println('Employee x: $s')
|
||||
assert s == '{"name":"Peter","age":28,"salary":95000.5,"title":2}'
|
||||
//
|
||||
y := json.decode(Employee, s) ?
|
||||
y := json.decode(Employee, s)?
|
||||
//
|
||||
println(y)
|
||||
assert y == x
|
||||
|
Reference in New Issue
Block a user