9 lines
195 B
Python
9 lines
195 B
Python
# please run `bazel run //concurrency/concurrency_v1/chapter1:1_helloworld`
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
|
|
cc_binary(
|
|
name = "1_helloworld",
|
|
srcs = ["1_helloworld.cpp"],
|
|
)
|