rule all:
    input:
        "test.out",


rule name:
    output:
        touch("{name}.out"),
    shell:
        "exit 0"

wildcard_constraints:
    name="test",
