kevin
07/19/2022, 2:24 PMcase
statement for True/False logic allow me to do something analogos to this python logic:
a = get_val_or_none()
if not a:
a = 'some new val'
do_something_with_a(a)
Kevin Kho
merge
like:
a = get_val_or_none()
with case(a, False):
b = some_new_task()
c = merge(b,a)
do_something_with_c(c)
kevin
07/19/2022, 2:35 PM