author | Hartmut Goebel <h.goebel@crazy-compilers.com> |
Thu, 19 Mar 2020 10:42:20 +0100 | |
changeset 51 | 34b48b90628c |
parent 26 | 0c3815cbb51e |
permissions | -rw-r--r-- |
26 | 1 |
include yslt.yml2 |
2 |
||
3 |
tstylesheet { |
|
4 |
template "/list" { |
|
5 |
apply "address", 0; |
|
6 |
| 1000 FOR I=1 TO 2 STEP 1 |
|
7 |
| 1010 READ NAME$, STREET$, VILLAGE$ |
|
8 |
| 1020 PRINT "INSERT INTO address (name, street, village) VALUES ('" + NAME$ + "', '" + STREET$ + "', '" + VILLAGE$ + "');" |
|
9 |
| 1030 NEXT I |
|
10 |
} |
|
11 |
template "address" { |
|
12 |
| «position() * 10 + 100» DATA "«name»", "«street»", "«village»" |
|
13 |
} |
|
14 |
} |
|
15 |