| 1234567891011121314 |
- // 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
- //
- // AUTOUPDATE
- package Core library "prelude";
- export import library "prelude/operators";
- export import library "prelude/types";
- // TODO: Support printing other types.
- // TODO: Consider rewriting using native support once library support exists.
- fn Print(x: i32) = "print.int";
|