Skip to content

Commit 977dc8e

Browse files
authored
Update README.md
1 parent f493043 commit 977dc8e

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,26 @@ Here is a **_READ_** ME file
44
install -v cicada.tct temp.txt
55
```
66

7-
```bash
8-
install -v cicada.tct temp.txt
7+
``` console
8+
$ install -v cicada.tct temp.txt
99
```
1010

1111
```terminal
1212
install -v cicada.tct temp.txt
13+
[...]
14+
hello
15+
```
16+
17+
```sh
18+
- name: Hello
19+
ansible.builtin.debug:
20+
msg: "Hello World"
21+
```
22+
23+
``` py
24+
def bubble_sort(items):
25+
for i in range(len(items)):
26+
for j in range(len(items) - 1 - i):
27+
if items[j] > items[j + 1]:
28+
items[j], items[j + 1] = items[j + 1], items[j]
1329
```

0 commit comments

Comments
 (0)