---
title: Tree
config:
flowchart:
curve: linear
---
graph LR
home["π C"]
home e1@--> algorithm["π Algorithm"]
algorithm e2@--> algorithmDoc(README.md)
home --> basics["π basics"]
basics --> tokens["π tokens.md"]
click tokens "https://github.com/Akhil-Biswas/C/tree/main"
click tokens "https://github.com/Akhil-Biswas/C/tree/main"
basics --> variables["π variables"]
variables --> variables1["π variables.c"]
variables--> variables2["π README.M"]
basics --> data_types["π data_types.md"]
basics --> operators["π operators.md"]
basics --> control_statements["π control_statements"]
control_statements --> if["π if else"]
control_statements --> switch["π switch"]
control_statements --> loop["π loop"]
loop --> loop1["π for loop"]
loop --> loop2["π while loop"]
home --> homeDoc(["π README.md"])
%% === STYLE CLASSES ===
classDef folder fill:,stroke:#faa405,stroke-width:2px,color:#faa405,font-weight:bold,font-size:20px;
classDef file fill:,stroke:#909090,stroke-width:1px,color:#fff;
classDef animation stroke-dasharray: 9,5,stroke-dashoffset: 900,animation: dash 25s linear infinite;
%% === APPLY CLASSES ===
class home,algorithm,basics,variables,control_statements,if,switch,loop,loop1,loop2 folder;
class algorithmDoc,tokens,variables1,variables2,data_types,operators,homeDoc file;
class e1,e2 animation;