Hi Je77 (and all other action coders),

I noticed in the latest beta actions there still sometimes is the
code pattern:

  [:temp |
    temp := something.
     ...] value: ''

This is really bad Smalltalk style. It's actually a bug that you can store
into block args. It's better to use the usual

  | temp |
  temp := ''.
  ...

which becomes

   [:request :page :book | 
     | temp |
     temp := ''.
     ...]

when compiling the action. This syntax is allowed for some time now. Plus,
it's more readable :-)
          
  -Bert-

Reply via email to