Gerardo Richarte wrote:

>     Now I'm dealing with SSP syntaxis, I tried somethin like:
>
> <ssp on: strm>
>
> <ul>
> <% list do: [:each | %>
>      <li><%= each printString %></li>
>     <% ] %>

    I found it, the correct way to do it is:

<ssp on: strm>

  <ul>
  <% 1 to: 20 do: [:each |<ssp>
       <li><%= each %></li>
  ] %>
  </ul>

    yeah!

    Parsed Bye!
    Richie

Reply via email to