1
1
mirror of https://github.com/casey/just.git synced 2024-11-22 10:26:26 +03:00
This commit is contained in:
Casey Rodarmor 2024-10-31 17:53:21 -07:00
parent 0da196645c
commit dd32da5702

View File

@ -1332,7 +1332,7 @@ These operators are currently unstable.
The `&&` operator returns the empty string if the left-hand argument is the
empty string, otherwise it returns the right-hand argument:
```just
```mf
foo := '' && 'goodbye' # ''
bar := 'hello' && 'goodbye' # 'goodbye'
```
@ -1340,7 +1340,7 @@ bar := 'hello' && 'goodbye' # 'goodbye'
The `||` operator returns the left-hand argument if it is non-empty, otherwise
it returns the right-hand argument:
```just
```mf
foo := '' || 'goodbye' # 'goodbye'
bar := 'hello' || 'goodbye' # 'hello'
```