mirror of
https://github.com/denoland/deno.git
synced 2024-12-27 01:29:14 -05:00
7 lines
134 B
Rust
7 lines
134 B
Rust
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
#[op2(fast)]
|
||
|
fn op_add(a: u32, b: u32) -> u32 {
|
||
|
a + b
|
||
|
}
|