Allow Duplicate Recipes
If allow-duplicate-recipes is set to true, defining multiple recipes with
the same name is not an error and the last definition is used. Defaults to
false.
set allow-duplicate-recipes
@foo:
echo foo
@foo:
echo bar
$ just foo
bar