1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
"And when Spring comes"
{:bud=>{:stem=>[{:branch=>:leaf}]}}
"And when Summer comes"
{:bud=>{:stem=>[{:branch=>[:leaf, :flower]}]}}
"And when Fall comes"
Fruit!
Falling Leaves!
{:bud=>{:stem=>[{:branch=>[]}]}}
"And when Winter comes"
{:bud=>{:stem=>[]}}
"And when Spring comes"
{:bud=>{:stem=>[{:branch=>:leaf}]}}
"And when Summer comes"
{:bud=>{:stem=>[{:branch=>[:leaf, :flower]}]}}
"And when Fall comes"
Fruit!
Falling Leaves!
{:bud=>{:stem=>[{:branch=>[]}]}}
"And when Winter comes"
{:bud=>{:stem=>[]}}
|