Please Build is a programming language created in 2016.
#467on PLDB | 8Years Old |
git clone https://github.com/thought-machine/please
Language for the please.build cross-language build system. The Please build language is a full programming language.
# Taken from //src/core/BUILD in the Please repo
go_library(
name = "core",
srcs = glob(["*.go"], exclude=["*_test.go", "version.go"]) + [":version"],
visibility = ["PUBLIC"],
deps = [
"//third_party/go:gcfg",
"//third_party/go:logging",
"//third_party/go:queue",
]
)