Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 468 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 468 Bytes

Here is a READ ME file

install -v cicada.tct temp.txt
$ install -v cicada.tct temp.txt
install -v cicada.tct temp.txt
[...]
hello
- name: Hello
  ansible.builtin.debug:
    msg: "Hello World"
def bubble_sort(items):
    for i in range(len(items)):
        for j in range(len(items) - 1 - i):
            if items[j] > items[j + 1]:
                items[j], items[j + 1] = items[j + 1], items[j]