duckscript/examples/functions.ds
sagie gur ari daf33fccde docs
2020-01-12 17:53:30 +00:00

13 lines
217 B
Plaintext

function print_first_and_second_argument
echo ${1} ${2}
return printed
end
function run_flow
status = print_first_and_second_argument hello world
echo The printout status is: ${status}
end
run_flow