forked from jeffreypalermo/FizzBuzz-TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.js
More file actions
19 lines (19 loc) · 843 Bytes
/
Program.js
File metadata and controls
19 lines (19 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var JavaScriptThickClient;
(function (JavaScriptThickClient) {
/// <reference path="Engine/Runner.ts" />
(function (Js) {
var Program = (function () {
function Program(configuration, appender) {
this.appender = appender;
this.configuration = configuration;
}
Program.prototype.Main = function () {
var runner = new Js.Engine.Runner(this.configuration.replacementRules);
runner.Run(this.configuration.lowerBound, this.configuration.upperBound, this.appender);
};
return Program;
})();
})(JavaScriptThickClient.Js || (JavaScriptThickClient.Js = {}));
var Js = JavaScriptThickClient.Js;
})(JavaScriptThickClient || (JavaScriptThickClient = {}));
//@ sourceMappingURL=Program.js.map