summaryrefslogtreecommitdiff
path: root/ops/op2/test_cases/sync/add.rs
blob: 74dbb1893460e6b31e4123ad49c968f75ec3f304 (plain)
1
2
3
4
5
6
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.

#[op2(fast)]
fn op_add(a: u32, b: u32) -> u32 {
  a + b
}