Created
April 20, 2011 14:02
-
-
Save dstrelau/931403 to your computer and use it in GitHub Desktop.
server.coffee
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
exports.alcohol = true | |
exports.go = -> | |
require module for module in findModules() | |
boot() |
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
# how in the world do I access beer.alcohol in here?? | |
# do I really have to do this? | |
beer = require 'beer' | |
util.debug beer.alcohol |
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
beer = require 'beer' | |
beer.go() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment