diff --git a/README.md b/README.md index 860e2ec..078237e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [](https://github.com/ikostan/python/actions/workflows/pytest.yml) [](https://github.com/ikostan/python/actions/workflows/pylint.yml) +[](https://github.com/ikostan/python/actions/workflows/ruff.yml)
diff --git a/solutions/javascript/hello-world/1/hello-world.js b/solutions/javascript/hello-world/1/hello-world.js
new file mode 100644
index 0000000..5fec175
--- /dev/null
+++ b/solutions/javascript/hello-world/1/hello-world.js
@@ -0,0 +1,8 @@
+//
+// This is only a SKELETON file for the 'Hello World' exercise. It's been provided as a
+// convenience to get you started writing code faster.
+//
+
+export function hello() {
+ return 'Hello, World!';
+}