added a couple more exercises

This commit is contained in:
2021-03-02 06:44:58 -05:00
parent e657af0635
commit dc1c84da4d
4 changed files with 119 additions and 0 deletions

11
red/ask-age.red Normal file
View File

@@ -0,0 +1,11 @@
Red [needs: view]
view [
f1: field "First name"
f2: field "Last name"
button "Greet me!" [
t1/text: rejoin ["Have a nice day " f1/text " " f2/text "!"]
]
return
t1: text "" 200
]