Lukasz Anforowicz | a6d1c2f | 2023-05-05 12:44:17 -0700 | [diff] [blame] | 1 | // 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 | |||||
5 | fn main() { | ||||
Devin Jeanpierre | 2c5b87c | 2024-03-25 15:40:48 -0700 | [diff] [blame] | 6 | let sum = example_lib::gshoe_add_two_integers(2, 2); |
Lukasz Anforowicz | a6d1c2f | 2023-05-05 12:44:17 -0700 | [diff] [blame] | 7 | println!("sum = {sum}"); |
8 | } |