main_bin.cpp 435 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. #include "executable_semantics/main.h"
  5. auto main(int argc, char** argv) -> int {
  6. // This assumes execution from bazel, in runfiles.
  7. return Carbon::ExecutableSemanticsMain(
  8. "executable_semantics/data/prelude.carbon", argc, argv);
  9. }