487 B
487 B
title, date, tags, type
| title | date | tags | type | ||
|---|---|---|---|---|---|
| First Post | 2021-05-15T23:39:49+05:30 |
|
post |
Yo yo yo
This is a heading
- And
- this
- is
- a
- list
- This
- is
- a
- numbered
- list
# Codeblocks look like this
def print():
print('Hello world!')
package main
import (
"fmt"
)
// This is a comment
func main () {
fmt.Println("Hello, world!")
}
PATH=$HOME
cat $HOME/file.txt | while read -n data; do
echo $data
done