Hacker News new | ask | show | jobs
by mpweiher 3304 days ago

   result := collection collect:[ :a | a process ].
   result := collection collect process.

   collection do process.

   1 to: 10 do: [ :i | stdout println:i ].
   stdout do println: (1 to: 10).
All just plain messages and plain message syntax, no special control structures needed.