1export function evaluate(x, y) {
2    return x - y;
3}
4
5
6export function getPluginName(x, y) {
7    return "subtract";
8}
9
10