Guest User

Untitled

a guest
Jul 29th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. NSObject subclass: TestObject
  2. [
  3.         bar [ ^true ]
  4. ]
  5.  
  6. NSObject subclass: SmalltalkTool [
  7.         foo [
  8.                 {'a'. 'b'} do: [
  9.                         :char|
  10.                         ('a' = char) ifTrue: [^TestObject new]
  11.                 ].
  12.                 ^TestObject new
  13.         ]
  14.  
  15.         run [
  16.                 self foo.
  17.         ]
  18. ]
Add Comment
Please, Sign In to add comment