Skip to content

Latest commit

 

History

History
78 lines (48 loc) · 1.88 KB

flowchart.md

File metadata and controls

78 lines (48 loc) · 1.88 KB

Concept tree for Wren learning mode

Some that are already in progress or planned

This is a very fluid plan and will doubtless continue to change frequently!

Boxes with green borders have the exercise + concept PRs submitted. Solid green means both are merged.

graph TD
    
start(("Start")) --basics--> basics["lasagna"]
style basics stroke:#f00

basics --booleans--> booleans["annalyns-infiltration"]
style booleans stroke:#f00

booleans --strings--> strings["log-line-parser"]
style strings stroke:#f00

booleans --null--> null["amusement-park"]
style null stroke:#f00

booleans --conditionals--> conditionals["vehicle-purchase?<br/>cars-assemble?"]
style conditionals stroke:#f00

booleans --numbers--> numbers["assembly-line"]
style numbers stroke:#f00

numbers -.loops.-> loops["mixed-juices?<br/>savings-account?"]
style loops stroke:#f00

conditionals -.loops.-> loops["mixed-juices?<br/>savings-account?"]
style loops stroke:#f00

conditionals -.ranges.-> ranges["chess-game"]
style ranges stroke:#f00

conditionals --exceptions--> exceptions["simple-calculator"]
style exceptions stroke:#f00

conditionals -.ternary-operator.-> ternary-operator["moviegoer"]
style ternary-operator stroke:#f00

numbers -.ranges.-> ranges["chess-game"]
style ranges stroke:#f00

loops -.lists.-> lists["bird-count"]
style lists stroke:#f00

ranges -.lists.-> lists["bird-count"]
style lists stroke:#f00

lists -.maps.-> maps["??"]
style maps stroke:#f00

maps -.classes.-> classes["??"]
style classes stroke:#f00

lists -.randomness.-> randomness["??"]
style randomness stroke:#f00

classes -.iterators.-> iterators["??"]
style iterators stroke:#f00

classes -.functions.-> functions["??"]
style functions stroke:#f00