Skip to content

Instantly share code, notes, and snippets.

View KazunoriUeda's full-sized avatar
💭
🌵🇯🇵

KazunoriUeda

💭
🌵🇯🇵
  • SORABITO Inc.
  • Japan
View GitHub Profile
@KazunoriUeda
KazunoriUeda / RSJengaLayout.st
Created August 21, 2019 09:46
SmalltalkJenga.st v1.0.2
'From Pharo8.0.0 of 8 July 2019 [Build information: Pharo-8.0.0+build.450.sha.e47b98dafd309b7ce3e20a7660a4bddbbc5ec789 (64 Bit)] on 31 July 2019 at 9:00:02.084138 pm'!
RSGridLayout subclass: #RSJengaLayout
instanceVariableNames: 'maxLineWidth'
classVariableNames: ''
package: 'SmalltalkJenga'!
!RSJengaLayout methodsFor: 'accessing' stamp: 'KazunoriUeda 7/31/2019 19:44'!
maxLineWidth: anObject
maxLineWidth := anObject! !
@KazunoriUeda
KazunoriUeda / SmalltalkJenga.st
Created June 21, 2019 08:53
SmalltalkJenga v1.0.1
Object subclass: #SmalltalkJenga
instanceVariableNames: 'random classList turn'
classVariableNames: ''
poolDictionaries: ''
category: 'SmalltalkJenga'!
!SmalltalkJenga methodsFor: 'actions' stamp: 'KazunoriUeda 12/19/2018 18:00'!
playAll
[ self play ] doWhileTrue: [ 0 < (self listSize) ].
! !
@KazunoriUeda
KazunoriUeda / SmalltalkJenga.st
Created December 19, 2018 09:40
SmalltalkJenga
'From Pharo7.0.0rc1 of 5 December 2018 [Build information: Pharo-7.0.0+rc1.build.19.sha.1fcbcd5170ad832066c54be29dd6b9bd66dc9575 (64 Bit)] on 19 December 2018 at 6:24:50.740241 pm'!
Object subclass: #SmalltalkJenga
instanceVariableNames: 'random classList turn'
classVariableNames: ''
poolDictionaries: ''
category: 'SmalltalkJenga'!
!SmalltalkJenga methodsFor: 'actions' stamp: 'KazunoriUeda 12/19/2018 18:00'!
playAll
[ self play ] doWhileTrue: [ 0 < (self listSize) ].