blob: 9caa9dd7e2dd51b7761024fa72013fa2111c07db [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdio.h>
#include <string>
#include "base/check.h"
#include "base/command_line.h"
#include "codelabs/rust/solutions/exercise_4_cpp_interop/cxx_lib.rs.h"
int main(int argc, char* argv[]) {
CHECK(base::CommandLine::Init(argc, argv));
printf("Hello from C++!\n");
hello_from_rust();
}