Shell one-liner: Difference between revisions

Line 319:
<pre>"Hello"</pre>
Even with an explicit `print` function was used:
<lang bash>$ huginn -c 'print("Hello\n")'</lang>
Output:
<pre>Hello
none</pre>
Unless the last expression ended with a semicolon:
<lang bash>$ huginn -c 'print("Hello\n");'</lang>
Output:
<pre>Hello</pre>
Anonymous user