10 lines
168 B
Python
10 lines
168 B
Python
# please run `bazel run //effective_cpp:2`
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
|
|
cc_binary(
|
|
name = "2",
|
|
srcs = ["2.cpp"],
|
|
copts = ["-std=c++17"],
|
|
)
|