The first post

example


This post is used to test markdown systax.

Header 1

Header 2 demo

Header 3

A paragraph...

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Ordered list

  1. Android
  2. iOS

Unordered list

  • Mac OS :apple:
  • Windows :windows:

Check list

  • Done
  • Todo

Code

This is inline code.

// this is a code block
function main() {
  console.log('hello')
}

Quote

Something magical...

Table

Apple Banana Be FA
John πŸ‘ πŸ‘
Jame πŸ‘Ž πŸ‘ πŸ³οΈβ€πŸŒˆ

Mermaid

Visit Mermaid to learn more about syntax.

flowchart LR A[Rental service] -. give account .-> User

Image

Markdown is awesome

What is Lorem Ipsum?

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Hello world

We start in main().

#include <stdio.h>

int main() {
  /* code here */
}

Print out greetting.

int main() {
/* code here */
printf("Hello, world!\n");
return 0;
}

Compile and run.

gcc hello.c -o main
./main
Hello, world!