load("@rules_swift//swift:swift.bzl", "swift_binary") # Per-directory BUILD: define targets where their sources live, then reference # them by label (e.g. //Sources/Aufgabe 5:Aufgabe5) from elsewhere to keep the # top-level BUILD.bazel uncluttered. swift_binary( name = "Aufgabe5", srcs = ["main.swift"], visibility = ["//visibility:public"], )