diff options
Diffstat (limited to 'devtools/client/framework/test/code_math.js')
-rw-r--r-- | devtools/client/framework/test/code_math.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/devtools/client/framework/test/code_math.js b/devtools/client/framework/test/code_math.js new file mode 100644 index 0000000000..0aace9b59f --- /dev/null +++ b/devtools/client/framework/test/code_math.js @@ -0,0 +1,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); +} |