We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 367552c commit d495d55Copy full SHA for d495d55
src/main/resources/script-templates/Python/Greeting.py
@@ -0,0 +1,9 @@
1
+# @String name
2
+# @OUTPUT String greeting
3
+
4
+# A Jython script with parameters.
5
+# It is the duty of the scripting framework to harvest
6
+# the 'name' parameter from the user, and then display
7
+# the 'greeting' output parameter, based on its type.
8
9
+greeting = "Hello, " + name + "!"
src/main/resources/script-templates/Python/Hello_World.py
@@ -0,0 +1,5 @@
+# A very simple Jython script.
+# It is the duty of the scripting framework to display
+# the script's return value, based on its type.
+"Hello world!"
0 commit comments