annotate demo/more/select.ur @ 1308:714e8b84221b

-limit for running time
author Adam Chlipala <adam@chlipala.net>
date Thu, 14 Oct 2010 11:35:56 -0400
parents e46227efcbba
children
rev   line source
adamc@1023 1 fun selectChar choices current =
adamc@1023 2 List.mapX (fn (ch, label) =>
adamc@1023 3 <xml><option value={String.str ch} selected={current = Some ch}>{[label]}</option></xml>) choices