mirror of https://github.com/lukechilds/node.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.
19 lines
229 B
19 lines
229 B
16 years ago
|
var c = require("b/c.js");
|
||
16 years ago
|
var string = "A";
|
||
|
|
||
16 years ago
|
exports.A = function () {
|
||
16 years ago
|
return string;
|
||
16 years ago
|
};
|
||
16 years ago
|
|
||
16 years ago
|
exports.C = function () {
|
||
|
return c.C();
|
||
|
};
|
||
16 years ago
|
|
||
16 years ago
|
exports.D = function () {
|
||
|
return c.D();
|
||
|
};
|
||
16 years ago
|
|
||
|
function onExit () {
|
||
|
string = "A done";
|
||
|
}
|