learning-to-code/ldpl/hello.ldpl

11 lines
195 B
Plaintext
Raw Normal View History

2021-03-04 01:40:43 +00:00
# LDPL 'Hello World' example
data:
name is text # Your name will go here.
procedure:
display "Hello World!" lf "What's your name? "
accept name
display "你好, " name ", welcome to LDPL!" lf