mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
314 B
11 lines
314 B
6 years ago
|
// This is to be used by "module.js" (and "module.coffee") example(s).
|
||
|
// There should NOT be a "universe.coffee" as only 1 of the 2 would
|
||
|
// ever be loaded unless the file extension was specified.
|
||
|
|
||
|
"use strict";
|
||
|
exports.answer = 42;
|
||
|
|
||
|
exports.start = function () {
|
||
|
console.log('Starting the universe....');
|
||
|
}
|