Skip to main content

My first post

Devlog C++
·
Author
Arian Shahrabi
Table of Contents

header#

header 2
#

header 3
#

header 4
#

header 5
#

italics italics


bold


bold

==highlight==

  • asd
  • asd
  • asd
  • asd

numbered lists

  1. a
  2. b
  3. c
  4. d
  5. e
  6. f
  7. g

ctrl + L = checklist

  • a
  • b
  • c
  • d
  • e
  • f
  • g

use the pipe ( | ) to rename links

[[]]

headers in the same page

[[learning Markdown#header 5| changed display name]]

blocks in the same page ^block

[[learning Markdown#^block| De Block]]

website url www.arianshahrabi.ca

arians website

put a ! if you want to embed the link

footnotes

tables

headerheader 2
cell valuecell value2

quotes

Arian is sigma Arian

add tilde to start writing code``

#include <iostream>

//demo

int main()
{
int number = 4;

while(int == 4)
{
number + number + 10;
std::cout << number << std::endl;
break;
}
return 0;
}