summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/implementation-javascript/samples/helloworld/src/main/resources/HelloWorld.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/old/contrib/implementation-javascript/samples/helloworld/src/main/resources/HelloWorld.js')
-rw-r--r--sandbox/old/contrib/implementation-javascript/samples/helloworld/src/main/resources/HelloWorld.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/sandbox/old/contrib/implementation-javascript/samples/helloworld/src/main/resources/HelloWorld.js b/sandbox/old/contrib/implementation-javascript/samples/helloworld/src/main/resources/HelloWorld.js
new file mode 100644
index 0000000000..928251bca2
--- /dev/null
+++ b/sandbox/old/contrib/implementation-javascript/samples/helloworld/src/main/resources/HelloWorld.js
@@ -0,0 +1,3 @@
+function sayHello(s) {
+ return "Hello " + s;
+}