Skip to content
buckeye43210 edited this page Jun 16, 2023 · 1 revision

Welcome to the sandbox wiki!

Example Mermaid Diagram

mermaid
classDiagram
    Creature <|-- Superman
    Creature <|-- Vampire
    Creature <|-- Diavolo
    Creature: +int size
    Creature: +int weight
    Creature: +isBenign()
    Creature: +power()
    class Superman{
        +String currentName
        +fly()
        +heal()
    }
    class Vampire{
        -int age
        -canBite()
    }
    class Diavolo{
        +bool is_serving
        +heat()
    }

Clone this wiki locally