blob: 5e21504e8652be867fcd7a76eff8a3fd08e48e72 [file]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// Computes the sum of its arguments.
int mySum(int a, int b) => a + b;