duckscript/examples/user_input.ds

10 lines
132 B
Plaintext
Raw Permalink Normal View History

2020-01-05 17:46:17 +00:00
echo Enter Full Name:
name = read
if is_empty ${name}
echo You didn't enter any value
else
echo Your name is: ${name}
2020-01-12 17:57:50 +00:00
end