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

expression.v

This commit is contained in:
Alexander Medvednikov
2019-11-07 00:40:37 +03:00
parent 2d3944250f
commit fbd71e1539
6 changed files with 726 additions and 738 deletions

View File

@ -280,4 +280,7 @@ const (
//make_receiver_mutable =
err_used_as_value = 'used as value'
and_or_error = 'use `()` to make the boolean expression clear\n' +
'for example: `(a && b) || c` instead of `a && b || c`'
)