Created
June 5, 2015 08:05
-
-
Save tmtk75/c4ab8e7bd2d1bf9fa085 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;(function(global) { | |
| function lib0(a) { return "lib0" + a; } | |
| function lib1(a) { return "lib1" + a; } | |
| function main(params, ctxt, done) { | |
| done({a: lib0(12), b: lib1(23)}); | |
| } | |
| // expose | |
| global.main = main; | |
| })(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment