mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:30:14 +01:00
Thanks to @ammaralassal for #6329 which did the heavy lifting to make this possible! Co-authored-by: Josh L <josh11b@users.noreply.github.com>
16 lines
391 B
Python
16 lines
391 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 = "sieve",
|
|
srcs = ["sieve.carbon"],
|
|
)
|
|
|
|
carbon_binary(
|
|
name = "hello_world",
|
|
srcs = ["hello_world.carbon"],
|
|
)
|