7 lines
101 B
Ruby
7 lines
101 B
Ruby
|
|
class Thingamajig
|
||
|
|
def initialize
|
||
|
|
fail 'not yet implemented'
|
||
|
|
end
|
||
|
|
end
|
||
|
|
t = Thingamajig.allocate
|