/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
examples/bazel/example_lib.cpp
9 строк
301 B
Chandler Carruth
Test that the built toolchain works with the example Bazel project (#6653)
29 янв 2026, 05:14
Не верифицирован
29 янв 2026, 05:14
529dcfc
Код
Авторство
О чём код?
// 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 #include "example_lib.h" #include <iostream> auto HelloWorld() -> void { std::cout << "Hello World!\n"; }