Test Post


This is only a test.

Heading 1

This is some text in a long paragraph

Heading 2

This is some text in a long paragraph

  1. Item 1
  2. Item 2
  3. Item 3

Heading 3

This is some more long text in a paragraph

This is somthing that was said to me once WOW

1
2
3
4
public void main() 
{
    //Hello world
}
---
title: Animal example
---
classDiagram
    note "From Duck till Zebra"
    Animal <|-- Duck
    note for Duck "can fly\ncan swim\ncan dive\ncan help in debugging"
    Animal <|-- Fish
    Animal <|-- Zebra
    Animal : +int age
    Animal : +String gender
    Animal: +isMammal()
    Animal: +mate()
    class Duck{
        +String beakColor
        +swim()
        +quack()
    }
    class Fish{
        -int sizeInFeet
        -canEat()
    }
    class Zebra{
        +bool is_wild
        +run()
    }