duckscript/examples/user_input.ds
sagie gur ari 6b00cb2e7e docs
2020-01-12 17:57:50 +00:00

10 lines
132 B
Plaintext

echo Enter Full Name:
name = read
if is_empty ${name}
echo You didn't enter any value
else
echo Your name is: ${name}
end