mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 13:50:10 +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>
10 lines
268 B
Plaintext
10 lines
268 B
Plaintext
// 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
|
|
|
|
import Core library "io";
|
|
|
|
fn Run() {
|
|
Core.PrintStr("Hello world!\n");
|
|
}
|