Files
2025-09-28 17:05:51 +08:00

11 lines
178 B
JavaScript

// Copyright (c) Daniel Gakwaya.
// SPDX-License-Identifier: MIT
export function add(age1,age2){
return age1 + age2
}
function subtract(age1,age2){
return age1 - age2;
}