adding hello example

This commit is contained in:
John Paul Wohlscheid 2021-02-24 23:38:48 -05:00
parent f18bf3b41c
commit 006e52593b
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# ldpl
# Fun with LDPL
Playing around with the LDPL

10
hello.ldpl Normal file
View File

@ -0,0 +1,10 @@
# 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