rhythmic-lizard-91902
03/13/2023, 2:27 PMglamorous-carpet-83516
03/13/2023, 2:57 PMreturn (
conditional("fractions")
.if_((my_input > 0.1) & (my_input < 1.0))
.then(subwf1(n=my_input))
.elif_((my_input > 1.0) & (my_input <= 10.0))
.then(subwf2(n=my_input))
.else_()
.fail("The input must be between 0 and 10")
)