Dolor Oculus
02/07/2021, 1:42 AMcase
can't be anded together, ie case(task1 and task2 and tasks)
, for when I want to say something like: "do this, but only if task1, 2, and 3 are true." in python it ends up being:
t1 = task1()
t2 = task2()
t3 = task3()
case(t1, True):
case(t2, True):
case(t3, True):
do_the_thing()
Amanda Wee
02/07/2021, 2:14 AMand
together thing, maybe you could have a t4 = task4(t1, t2, t3)
then do case(t4, True)