Welcome to my Blog!
This is some bold and italics text.
This is a list in markdown:
- One
- Two
- Three
code test
...
type mod1 = string;
type mod2 = number | string;
type mod3 = mod1 extends mod2 ? "yes" : "no";
...
#include<cstdio>;
using namespace std;
int main(){
prinf("Hello World");
return 0;
}