15 lines
186 B
Text
15 lines
186 B
Text
|
|
class MY_CLASS
|
||
|
|
|
||
|
|
create
|
||
|
|
make
|
||
|
|
|
||
|
|
feature {NONE} -- Initialization
|
||
|
|
|
||
|
|
make
|
||
|
|
-- This is a creation procedure or "Constructor".
|
||
|
|
do
|
||
|
|
create my_string.make_empty
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|