Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
Smalltalk at: #a put: nil.
|
||||
Smalltalk at: #b put: nil.
|
||||
|
||||
a := [:x| 'executing a' displayNl. x].
|
||||
b := [:x| 'executing b' displayNl. x].
|
||||
|
||||
('false and false = %1' %
|
||||
{ (a value: false) and: [ b value: false ] })
|
||||
displayNl.
|
||||
|
||||
('true or false = %1' %
|
||||
{ (a value: true) or: [ b value: false ] })
|
||||
displayNl.
|
||||
|
||||
('false or true = %1' %
|
||||
{ (a value: false) or: [ b value: true ] })
|
||||
displayNl.
|
||||
|
||||
('true and false = %1' %
|
||||
{ (a value: true) and: [ b value: false ] })
|
||||
displayNl.
|
||||
Loading…
Add table
Add a link
Reference in a new issue