| Name | Description | Required |
|---|---|---|
| name | A name, can be any text. | No. |
| text | The text to display. | No, text can be nested instead. |
<echo name="Greeting Job" text="Hello World"/>
<sequential>
<copy id="copy" name="Copy from a file to a buffer"
from="stuff.txt">
<output>
<buffer/>
</output>
</copy>
<echo name="What's in the file?" text="${copy.output}"/>
</sequential>