prelude.carbon 475 B

1234567891011121314
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. package Core library "prelude";
  7. export import library "prelude/operators";
  8. export import library "prelude/types";
  9. // TODO: Support printing other types.
  10. // TODO: Consider rewriting using native support once library support exists.
  11. fn Print(x: i32) = "print.int";