This one is almost the same as above. if you write it out after the 5th recursion it results in: +A -> +F--A -> +F--F--A -> +F--F--F--A -> +F--F--F--F--A ->+F--F--F--F--F--A
Note: the last turning does not affect the star at all. there is no further step. and even if there was, it would not affect. It would paint the same star again. the same happens if we do not stop after 5 recursions.
the rule can also be written as: A=A--F or A=--FA , aswell substituting the + by a - .