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
- Android
- 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.
Image
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./mainHello, world!