duckscript/examples/use_variable.ds
Sagie Gur-Ari 6249efda49
0.1.0 (#1)
initial
2019-12-30 12:45:28 +02:00

9 lines
253 B
Plaintext

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}