prelude.carbon 407 B

1234567891011
  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. package Carbon api;
  5. // Note that Print is experimental, and not part of an accepted proposal, but
  6. // is included here for printing state in tests.
  7. fn Print(format_str: String) {
  8. __intrinsic_print(format_str);
  9. }