duckscript/examples/use_variable.ds

9 lines
253 B
Plaintext
Raw Normal View History

2019-12-30 10:45:28 +00:00
out = set "hello world"
# This will print: "The out variable holds the value: hello world"
echo The out variable holds the value: ${out}
# This will print: "To use the out variable just write: ${out}"
echo To use the out variable just write: \${out}