Implement the if Leaf Procedure.
Review how Floristry::ParametersInterpreter handles Flor constructs.
We need to display in the _if.html.erb partial the condition, the else, and their sequences:
View
if (1=1)
▼ sequence ▼
do_this
else
▼ sequence ▼
do_that
Flor definition
if (1=1)
sequence # then
do_this
sequence # else
do_that
Solution should define a reusable pattern for the other 2 unimplemented procedures: concurrence and cron.
Implement the
ifLeaf Procedure.Review how
Floristry::ParametersInterpreterhandles Flor constructs.We need to display in the
_if.html.erbpartial the condition, the else, and their sequences:View
Flor definition
Solution should define a reusable pattern for the other 2 unimplemented procedures:
concurrenceandcron.