blob: 9054109bdf8812e1446e5a11a54096318744a3a2 [file] [log] [blame]
Lukasz Anforowicza6d1c2f2023-05-05 12:44:17 -07001// Part of the Crubit 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
5fn main() {
Devin Jeanpierre2c5b87c2024-03-25 15:40:48 -07006 let sum = example_lib::gshoe_add_two_integers(2, 2);
Lukasz Anforowicza6d1c2f2023-05-05 12:44:17 -07007 println!("sum = {sum}");
8}