Hello World
Hello World
guest@blog:~$ cat ./hello-world.md
$ toc --list
This is my first blog. Here’s a line of python to generate an asterisk triangle:
>>> print("\n".join(["*" * i for i in range(int(input()) + 1)]))
5
*
**
***
****
*****
Aravind's Blog
Hello World
guest@blog:~$ cat ./hello-world.md
This is my first blog. Here’s a line of python to generate an asterisk triangle:
>>> print("\n".join(["*" * i for i in range(int(input()) + 1)]))
5
*
**
***
****
*****