summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/code_math.js
blob: 0aace9b59fb7d68461dba85a0c8926e393cfe163 (plain)
1
2
3
4
5
6
7
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

function add(a, b, k) {
  var result = a + b;
  return k(result);
}