11 lines
195 B
Plaintext
11 lines
195 B
Plaintext
# 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
|
|
|