16 lines
250 B
Smalltalk
16 lines
250 B
Smalltalk
Class {
|
|
#name : #Squeak,
|
|
#superclass : #Object,
|
|
#category : #CTF
|
|
}
|
|
|
|
{ #category : #'instance creation' }
|
|
Squeak class >> basicNew [
|
|
InitialisationError signal.
|
|
]
|
|
|
|
{ #category : #'as yet unclassified' }
|
|
Squeak >> fetchFlag [
|
|
^ Challenge flag.
|
|
]
|