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.
16 lines
182 B
16 lines
182 B
16 years ago
|
var d = require("d.js");
|
||
|
|
||
16 years ago
|
var string = "C";
|
||
|
|
||
16 years ago
|
exports.C = function () {
|
||
16 years ago
|
return string;
|
||
16 years ago
|
};
|
||
|
|
||
|
exports.D = function () {
|
||
|
return d.D();
|
||
|
};
|
||
16 years ago
|
|
||
|
function onExit () {
|
||
|
string = "C done";
|
||
|
}
|