Last active
December 9, 2017 13:51
-
-
Save brainysmurf/56741f4ad0bc607d3b531678dbae41ba to your computer and use it in GitHub Desktop.
Other
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 Package () { | |
return { | |
spooky: function () { return "BOO!" }, | |
} | |
} |
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 Tests () { | |
var me = Package(); | |
Logger.log(me.spooky()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment