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]