Sha256: 77154a128e36cd58c42f091e3cc084b589b7e111e4a33e84a0626fc3694a609f
Contents?: true
Size: 571 Bytes
Versions: 19
Compression:
Stored size: 571 Bytes
Contents
# The greeting GREETING = 'Hay' # Hey, check this out! module.exports = FOO = 'Foo constant!' # Says hello to a person # # @param [String] name the name of the person # hello = (name) -> console.log GREETING, name # Says bye to a person # # @param [String] name the name of the person # bye = (name) -> console.log "Bye, bye #{ name }" # Say hi to a person # # @param [String] name the name of the person # module.exports.sayHi = (hi) -> console.log "Hi #{ hi}!" # A fooer for fooing foos. # # @note Foo module.exports = foo = (foos) -> logger.info 'Fooing...'
Version data entries
19 entries across 19 versions & 1 rubygems