Re: Advert for my coming talk at XML Prague

One last example for today:


>>> DISPLAY g
date: day, -"/", month, -"/", year.
@day: d, d.
month: d, d.
@year: +"20"", d, d.
-d: ["0"-"9"].

>>> WRITE date1.xml
{[1]: "<date day='30' year='2024'><month>06</month></date>"}

>>> ROUNDTRIP date1.xml WITH g
30/06/24

Steven

On Tuesday 21 May 2024 17:45:46 (+02:00), Steven Pemberton wrote:

> 
> This was the tricky part:
> 
> 
> 
> >>> DISPLAY g
> date: day, -"/", month, -"/", year.
> day: d, d.
> month: d, d.
> @year: +"20", d, d.
> -d: ["0"-"9"].
> 
> >>> WRITE date.xml
> {[1]: "<date year='2024'><day>30</day><month>06</month></date>"}
> 
> >>> ROUNDTRIP date.xml WITH g
> 30/06/24
> 
> Steven
> 
> On Wednesday 15 May 2024 11:58:37 (+02:00), Steven Pemberton wrote:
> 
> > >>> DISPLAY g
> > -d: ["0"-"9"].
> > date: day, -"/", month, -"/", year.
> > day: d, d.
> > month: d, d.
> > year: +"20", d, d.
> > >>> WRITE xml
> > {[1]: "<date><day>30</day><month>06</month><year>2024</year></date>"}
> > >>> ROUNDTRIP xml WITH g
> > 30/06/24
> 

Received on Tuesday, 21 May 2024 16:01:54 UTC