From 7722bb7a9177e2d70a5623ecc645aae849f009e5 Mon Sep 17 00:00:00 2001 From: marc mocio Date: Wed, 12 Oct 2016 10:20:29 +0200 Subject: [PATCH 1/3] write solution --- hello-world.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hello-world.js b/hello-world.js index 462649f..d408cb4 100644 --- a/hello-world.js +++ b/hello-world.js @@ -9,9 +9,7 @@ var HelloWorld = function() {}; HelloWorld.prototype.hello = function(input) { -// -// YOUR CODE GOES HERE -// +return "HEllo, World"; }; module.exports = HelloWorld; From b8162ec259214e2e2a2aac87b985851c45fc8dfc Mon Sep 17 00:00:00 2001 From: marc mocio Date: Wed, 12 Oct 2016 10:28:01 +0200 Subject: [PATCH 2/3] modify solution --- hello-world.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello-world.js b/hello-world.js index d408cb4..561f040 100644 --- a/hello-world.js +++ b/hello-world.js @@ -9,7 +9,7 @@ var HelloWorld = function() {}; HelloWorld.prototype.hello = function(input) { -return "HEllo, World"; + return "Hello, World!"; }; module.exports = HelloWorld; From 72f11088a909f2b7e6022c0d6cda8d25b9ffcb4a Mon Sep 17 00:00:00 2001 From: marc mocio Date: Wed, 12 Oct 2016 10:33:25 +0200 Subject: [PATCH 3/3] this is an useless commit --- hello-world.js | 1 + 1 file changed, 1 insertion(+) diff --git a/hello-world.js b/hello-world.js index 561f040..f9b812d 100644 --- a/hello-world.js +++ b/hello-world.js @@ -9,6 +9,7 @@ var HelloWorld = function() {}; HelloWorld.prototype.hello = function(input) { + // Here is the solution: return "Hello, World!"; };