mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:10:12 +01:00
Mostly generated by Gemini; TODO annotations added for cases where we should support a better way of doing various parts of this. Assisted-by: Gemini 3 Pro --------- Co-authored-by: Carbon Infra Bot <carbon-external-infra@google.com>
16 lines
393 B
Python
16 lines
393 B
Python
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
# Exceptions. See /LICENSE for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
load("//bazel/carbon_rules:defs.bzl", "carbon_binary")
|
|
|
|
carbon_binary(
|
|
name = "hello_world",
|
|
srcs = ["hello_world.carbon"],
|
|
)
|
|
|
|
carbon_binary(
|
|
name = "socket",
|
|
srcs = ["socket.carbon"],
|
|
)
|