Quick actions

cmd+k|ctrl+k

Navigation

Languages

Chaining boolean comparison

Snippet info

Language

Raku

Visibility

public

Author

raiph.mellor

Created

2021-05-17T00:59:00.491075Z

Updated

2021-05-17T00:59:00.491075Z

my (\x, \y, \z) = [True, False].pick xx 3;
say "`{x} <= {y} <= {z}` evaluates to ", x <= y <= z;
INFO