rule all:
    input:
        "out.txt"


rule a:
    output:
        "out.txt"
    shell:
        "echo hello > {output}"
