Arc Forumnew | comments | leaders | submit | lr's commentslogin

A 'correct' solution for Seaside that only requires 14 parse tree nodes: http://www.lukas-renggli.ch/blog/take-the-arc-challenge

-----

2 points by sroccaserra 5775 days ago | link

I paste Lukas's Seaside solution below because some people might have missed the link above, so it might not get the attention it deserves. Although it's a bit late I guess. Click the link above to see it in action.

  | something |
  something := self request: 'Say something'.
  self inform: 'Click here'.
  self inform: 'You said: ' , something

-----

1 point by akkartik 5775 days ago | link

yeah, so cool.

-----