duckscript/examples/user_input.ds

10 lines
135 B
Plaintext
Raw 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}
end_if