Sign in
bazel
/
crubit
/
eda4848aca7f4d087709de1c1557e99b4ecd8592
/
.
/
examples
/
rust
/
function
/
example.rs
blob: 6c061f267d2ddf6cfd6086a7c94a45dda7dad034 [
file
] [
log
] [
blame
]
// Part of the Crubit project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
pub
fn
add_two_integers
(
x
:
i32
,
y
:
i32
)
->
i32
{
x
+
y
}