Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 187 Bytes

playground.md

File metadata and controls

12 lines (10 loc) · 187 Bytes

Playground

This is a page for testing out various things

graph LR
  A[Start] --> B{Error?};
  B -->|Yes| C[Hmm...];
  C --> D[Debug];
  D --> B;
  B ---->|No| E[Yay!];