Re: ixampl now supports insertions

Huzzah! Huzzah!

You beat me; I have gotten mired down on an unrelated change I decided I
should make before buckling down to do insertions.

Michael

Steven Pemberton <steven.pemberton@cwi.nl> writes:

> While I haven't tested it exhaustively, my implementation now supports insertions:
>
> ixml
>
>    
>   1	numbers: @source, n**-", ".
>       2	source: +"ixml".
>       3	n: neg; pos.
>       4	-neg: -"(", +"-", d+, -")".
>       5	-pos: +"+", d+.
>       6	-d: ["0"-"9"].
>
> input
>
>      1	123, (456), 7, (8), 
> 9
>
> result
>
> <numbers source='ixml'>
>     <n>+123</n>
>     <n>-456</n>
>     <n>+7</n>
>     <n>-8</n>
>     <n>+9</n>
> </numbers>
>
> end


-- 
C. M. Sperberg-McQueen
Black Mesa Technologies LLC
http://blackmesatech.com

Received on Wednesday, 27 July 2022 21:43:19 UTC