org-rw/tests/04-code.org
2020-12-06 00:26:44 +01:00

680 B

04-Code

First Item

echo "This is a test"
echo "with two lines"
exit 0 # Exit successfully
This is a test
with two lines

Second item

echo "This is another test"
echo "with two lines too"
exit 0 # Comment

This is another test with two lines too